UserReceiptDto

data class UserReceiptDto(val objectType: String? = null, val receiptDate: OffsetDateTime? = null, val listingSortDate: OffsetDateTime? = null, val merchantName: String? = null, val renderURL: String? = null, val total: UserReceiptDtoTotal? = null, val id: String? = null)

Parameters

objectType
receiptDate
listingSortDate
merchantName

The name of the merchant. If no merchant is set this will contain the string 'Merchant?'

renderURL
total
id

Constructors

Link copied to clipboard
constructor(objectType: String? = null, receiptDate: OffsetDateTime? = null, listingSortDate: OffsetDateTime? = null, merchantName: String? = null, renderURL: String? = null, total: UserReceiptDtoTotal? = null, id: String? = null)

Properties

Link copied to clipboard
@SerializedName(value = "id")
val id: String? = null
Link copied to clipboard
@SerializedName(value = "listingSortDate")
val listingSortDate: OffsetDateTime? = null
Link copied to clipboard
@SerializedName(value = "merchantName")
val merchantName: String? = null
Link copied to clipboard
@SerializedName(value = "objectType")
val objectType: String? = null
Link copied to clipboard
@SerializedName(value = "receiptDate")
val receiptDate: OffsetDateTime? = null
Link copied to clipboard
@SerializedName(value = "renderURL")
val renderURL: String? = null
Link copied to clipboard
@SerializedName(value = "total")
val total: UserReceiptDtoTotal? = null