DocumentMerchantDto

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

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
categoryCode

The category this merchant belongs to.

taxIdNumber

The tax number for this merchant.

url

The home webpage for this merchant.

Constructors

Link copied to clipboard
constructor(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)

Properties

Link copied to clipboard
@SerializedName(value = "addressLines")
val addressLines: List<String>? = null
Link copied to clipboard
@SerializedName(value = "categoryCode")
val categoryCode: String? = null
Link copied to clipboard
@SerializedName(value = "channel")
val channel: OrderChannelTypesEnum? = null
Link copied to clipboard
@SerializedName(value = "email")
val email: String? = null
Link copied to clipboard
@SerializedName(value = "geoLocation")
val geoLocation: String? = null
Link copied to clipboard
@SerializedName(value = "merchantId")
val merchantId: String? = null
Link copied to clipboard
@SerializedName(value = "merchantName")
val merchantName: String? = null
Link copied to clipboard
@SerializedName(value = "storeId")
val storeId: String? = null
Link copied to clipboard
@SerializedName(value = "storeName")
val storeName: String? = null
Link copied to clipboard
@SerializedName(value = "taxIdNumber")
val taxIdNumber: String? = null
Link copied to clipboard
@SerializedName(value = "telephone")
val telephone: String? = null
Link copied to clipboard
@SerializedName(value = "url")
val url: String? = null