Interface ShippingQuery

This object contains information about an incoming shipping query.

interface ShippingQuery {
    from: User;
    id: string;
    invoice_payload: string;
    shipping_address: ShippingAddress;
}

Properties

from: User

User who sent the query

id: string

Unique query identifier

invoice_payload: string

Bot specified invoice payload

shipping_address: ShippingAddress

User specified shipping address