Interface UpdateNewShippingQuery

A new incoming shipping query; for bots only. Only for invoices with flexible price. Subtype of Update.

interface UpdateNewShippingQuery {
    @type: "updateNewShippingQuery";
    id: string;
    invoice_payload: string;
    sender_user_id: number;
    shipping_address: Address;
}

Properties

@type: "updateNewShippingQuery"
id: string

Unique query identifier.

invoice_payload: string

Invoice payload.

sender_user_id: number

Identifier of the user who sent the query.

shipping_address: Address

User shipping address.