UserReceiptDto

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

Parameters

objectType
  • @param receiptDate * @param listingSortDate * @param merchantName The name of the merchant. If no merchant is set this will contain the string 'Merchant?'

renderURL
  • @param total * @param id

Constructors

UserReceiptDto
Link copied to clipboard
fun UserReceiptDto(objectType: String? = null, receiptDate: OffsetDateTime? = null, listingSortDate: OffsetDateTime? = null, merchantName: String? = null, renderURL: String? = null, total: UserReceiptDtoTotal? = null, id: String? = null)
  • @param receiptDate * @param listingSortDate * @param merchantName The name of the merchant. If no merchant is set this will contain the string 'Merchant?'

Properties

id
Link copied to clipboard
@SerializedName(value = id)
val id: String? = null
listingSortDate
Link copied to clipboard
@SerializedName(value = listingSortDate)
val listingSortDate: OffsetDateTime? = null
merchantName
Link copied to clipboard
@SerializedName(value = merchantName)
val merchantName: String? = null
objectType
Link copied to clipboard
@SerializedName(value = objectType)
val objectType: String? = null
  • @param receiptDate * @param listingSortDate * @param merchantName The name of the merchant. If no merchant is set this will contain the string 'Merchant?'

receiptDate
Link copied to clipboard
@SerializedName(value = receiptDate)
val receiptDate: OffsetDateTime? = null
renderURL
Link copied to clipboard
@SerializedName(value = renderURL)
val renderURL: String? = null
  • @param total * @param id

total
Link copied to clipboard
@SerializedName(value = total)
val total: UserReceiptDtoTotal? = null