ShippingQuery

data class ShippingQuery(    val id: ShippingQueryIdentifier,     val from: User,     val invoicePayload: InvoicePayload,     val shippingAddress: ShippingAddress) : FromUser

Constructors

Link copied to clipboard
fun ShippingQuery(    id: ShippingQueryIdentifier,     from: User,     invoicePayload: InvoicePayload,     shippingAddress: ShippingAddress)

Properties

Link copied to clipboard
open override val from: User

The source User of this type

Link copied to clipboard
val id: ShippingQueryIdentifier
Link copied to clipboard
val invoicePayload: InvoicePayload
Link copied to clipboard
val shippingAddress: ShippingAddress
Link copied to clipboard
open override val user: User

Extensions

Link copied to clipboard
fun ShippingQuery.createAnswerError(error: String): AnswerShippingQueryError
Link copied to clipboard
fun ShippingQuery.createAnswerOk(shippingOptions: List<ShippingOption>): AnswerShippingQueryOk
Link copied to clipboard
val ShippingQuery.invoice_payload: InvoicePayload
Link copied to clipboard
val ShippingQuery.shipping_address: ShippingAddress