DocumentListItemContentDto

data class DocumentListItemContentDto(val currencyCode: CurrencyCodeEnum?, val documentNumber: String? = null, val documentDate: LocalDate? = null, val documentTime: String? = null, val dueDate: LocalDate? = null, val payments: List<DocumentPaymentDto>? = null, val merchant: DocumentListMerchantDto? = null, val total: DocumentTaxableAmountDto? = null, val amountDue: DocumentTaxableAmountDto? = null)

Parameters

currencyCode
documentNumber

The document number that appears on the document. For example this can be invoice number.

documentDate

The date on which this document was generated. This is only the date component of the local time at which the purchase was made, with no explicit timezone information. see: 'documentGenerationTime'. Date is in ISO-8601 format.

documentTime

The time at which this document was generated. This is only the time component of the local time at which the purchase was made, with no explicit timezone information.

dueDate

The date on which the amountDue should be paid. Date is in ISO-8601 format.

payments

The payments made on this document. This will be an array with the different payments made towards this document.

merchant
total
amountDue

Constructors

Link copied to clipboard
constructor(currencyCode: CurrencyCodeEnum?, documentNumber: String? = null, documentDate: LocalDate? = null, documentTime: String? = null, dueDate: LocalDate? = null, payments: List<DocumentPaymentDto>? = null, merchant: DocumentListMerchantDto? = null, total: DocumentTaxableAmountDto? = null, amountDue: DocumentTaxableAmountDto? = null)

Properties

Link copied to clipboard
@SerializedName(value = "amountDue")
val amountDue: DocumentTaxableAmountDto? = null
Link copied to clipboard
@SerializedName(value = "currencyCode")
val currencyCode: CurrencyCodeEnum?
Link copied to clipboard
@SerializedName(value = "documentDate")
val documentDate: LocalDate? = null
Link copied to clipboard
@SerializedName(value = "documentNumber")
val documentNumber: String? = null
Link copied to clipboard
@SerializedName(value = "documentTime")
val documentTime: String? = null
Link copied to clipboard
@SerializedName(value = "dueDate")
val dueDate: LocalDate? = null
Link copied to clipboard
@SerializedName(value = "merchant")
val merchant: DocumentListMerchantDto? = null
Link copied to clipboard
@SerializedName(value = "payments")
val payments: List<DocumentPaymentDto>? = null
Link copied to clipboard
@SerializedName(value = "total")
val total: DocumentTaxableAmountDto? = null