OrderInfo

data class OrderInfo(val name: String? = null, val phoneNumber: String? = null, val email: String? = null, val shippingAddress: ShippingAddress? = null)

All the field of this class are nullable due to specific of OrderInfo from official bots api

See also

Constructors

Link copied to clipboard
constructor(name: String? = null, phoneNumber: String? = null, email: String? = null, shippingAddress: ShippingAddress? = null)

Properties

Link copied to clipboard
val email: String? = null
Link copied to clipboard
val name: String? = null
Link copied to clipboard
val phoneNumber: String? = null
Link copied to clipboard