DateTime
Holds a parsed date and time from a receipt, with both string and Date representations.
Package: com.microblink.core
Declaration
class DateTime
Quick Reference
Properties
| Property | Description |
|---|---|
date | The date portion as a StringType |
time | The time portion as a StringType |
dateTime | A combined java.util.Date |
Properties
date
var date: StringType?
The date portion as a StringType (carries confidence).
time
var time: StringType?
The time portion as a StringType.
dateTime
var dateTime: Date?
A combined java.util.Date built from date and time. null if either component is missing or unparseable.