peyk.platforms.telegram.types.shipping_query¶
Classes
|
This object contains information about an incoming shipping query. |
- class peyk.platforms.telegram.types.shipping_query.ShippingQuery(id: str, from_: User, invoice_payload: str, shipping_address: ShippingAddress)[source]¶
Bases:
objectThis object contains information about an incoming shipping query.
- Variables:
id (str) – Unique query identifier
from – User who sent the query
invoice_payload (str) – Bot-specified invoice payload
shipping_address (peyk.platforms.telegram.types.shipping_address.ShippingAddress) – User specified shipping address
- id: str¶
- invoice_payload: str¶
- shipping_address: ShippingAddress¶
- classmethod from_dict(data: dict | None) ShippingQuery | None[source]¶
Provides the from dict operation for the Telegram integration.
- Parameters:
data – Value used by this operation.
- Returns:
Result produced by the operation.