Skip to main content

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

PropertyDescription
dateThe date portion as a StringType
timeThe time portion as a StringType
dateTimeA 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.