DocumentListMerchantDto

data class DocumentListMerchantDto(merchantName: String?, categoryCode: String?)

The merchant infomation on this document.

Parameters

merchantName

The name of the merchant.

categoryCode

The category the merchant belongs to.

Constructors

DocumentListMerchantDto
Link copied to clipboard
fun DocumentListMerchantDto(merchantName: String? = null, categoryCode: String? = null)
The name of the merchant.

Properties

categoryCode
Link copied to clipboard
@SerializedName(value = categoryCode)
val categoryCode: String? = null
The category the merchant belongs to.
merchantName
Link copied to clipboard
@SerializedName(value = merchantName)
val merchantName: String? = null
The name of the merchant.