DocumentMerchantDto

data class DocumentMerchantDto(addressLines: List<String>?, merchantId: String?, merchantName: String?, email: String?, geoLocation: String?, storeName: String?, storeId: String?, telephone: String?, channel: OrderChannelTypesEnum?, categoryCode: String?, taxIdNumber: String?, url: String?)

Parameters

addressLines

The address of the merchant on this document.

merchantId

The merchant id of the merchant as stored in sensibill's system

merchantName

The name of the merchant.

email

The email for the merchant.

geoLocation

The geolocation for the merchant.

storeName

The specific store name of this merchant.

storeId

The store id as stored in the sensibill system.

telephone

The phone number for this merchant.

channel
  • @param categoryCode The category this merchant belongs to.

taxIdNumber

The tax number for this merchant.

url

The home webpage for this merchant.

Constructors

DocumentMerchantDto
Link copied to clipboard
fun DocumentMerchantDto(addressLines: List<String>? = null, merchantId: String? = null, merchantName: String? = null, email: String? = null, geoLocation: String? = null, storeName: String? = null, storeId: String? = null, telephone: String? = null, channel: OrderChannelTypesEnum? = null, categoryCode: String? = null, taxIdNumber: String? = null, url: String? = null)
The address of the merchant on this document.

Properties

addressLines
Link copied to clipboard
@SerializedName(value = addressLines)
val addressLines: List<String>? = null
The address of the merchant on this document.
categoryCode
Link copied to clipboard
@SerializedName(value = categoryCode)
val categoryCode: String? = null
channel
Link copied to clipboard
@SerializedName(value = channel)
val channel: OrderChannelTypesEnum? = null
  • @param categoryCode The category this merchant belongs to.

email
Link copied to clipboard
@SerializedName(value = email)
val email: String? = null
The email for the merchant.
geoLocation
Link copied to clipboard
@SerializedName(value = geoLocation)
val geoLocation: String? = null
The geolocation for the merchant.
merchantId
Link copied to clipboard
@SerializedName(value = merchantId)
val merchantId: String? = null
The merchant id of the merchant as stored in sensibill's system
merchantName
Link copied to clipboard
@SerializedName(value = merchantName)
val merchantName: String? = null
The name of the merchant.
storeId
Link copied to clipboard
@SerializedName(value = storeId)
val storeId: String? = null
The store id as stored in the sensibill system.
storeName
Link copied to clipboard
@SerializedName(value = storeName)
val storeName: String? = null
The specific store name of this merchant.
taxIdNumber
Link copied to clipboard
@SerializedName(value = taxIdNumber)
val taxIdNumber: String? = null
The tax number for this merchant.
telephone
Link copied to clipboard
@SerializedName(value = telephone)
val telephone: String? = null
The phone number for this merchant.
url
Link copied to clipboard
@SerializedName(value = url)
val url: String? = null
The home webpage for this merchant.