VerifyDetailedDateResult

@Serializable
@SerialName(value = "DetailedDateResult")
data class VerifyDetailedDateResult(val field: String?, val details: DetailDictionary?, val results: List<VerifyResult>?, val day: Int?, val month: Int?, val year: Int?, val successfullyParsed: Boolean?, val filledByDomainKnowledge: Boolean?, val originalResult: List<VerifyResult>?) : VerifyResult

Detailed date instance of the result, extends VerifyResult.

Constructors

Link copied to clipboard
constructor(field: String?, details: DetailDictionary?, results: List<VerifyResult>?, day: Int?, month: Int?, year: Int?, successfullyParsed: Boolean?, filledByDomainKnowledge: Boolean?, originalResult: List<VerifyResult>?)

Properties

Link copied to clipboard
val day: Int?

Integer value of the day.

Link copied to clipboard
open override val details: DetailDictionary?

Additional information about the result. Structured as a key value pairs.

Link copied to clipboard
open override val field: String?

Name of the field.

Link copied to clipboard

Indication whether the date was filled by our internal document knowledge and not directly parsed.

Link copied to clipboard
val month: Int?

Integer value of the month.

Link copied to clipboard

A list of original result strings of the date, non-formatted.

Link copied to clipboard
open override val results: List<VerifyResult>?

Array of children results that contributes to the overall result of this result.

Link copied to clipboard

Indication whether the date was successfully parsed.

Link copied to clipboard
val year: Int?

Integer value of the year.