EditDocumentMerchantDto

data class EditDocumentMerchantDto(merchantName: String?, taxIdNumber: String?, categoryCode: String?)

Parameters

merchantName

The name of the merchant.

taxIdNumber

The tax number for this merchant.

categoryCode

The category this merchant belongs to. Use the endpoint /lookups/receiptcategories for a list of valid categories.

Constructors

EditDocumentMerchantDto
Link copied to clipboard
fun EditDocumentMerchantDto(merchantName: String? = null, taxIdNumber: 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 this merchant belongs to.
merchantName
Link copied to clipboard
@SerializedName(value = merchantName)
val merchantName: String? = null
The name of the merchant.
taxIdNumber
Link copied to clipboard
@SerializedName(value = taxIdNumber)
val taxIdNumber: String? = null
The tax number for this merchant.