2017-05-19 19:41:06 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
|
|
|
# A library that provides a Python interface to the Telegram Bot API
|
2023-01-01 21:31:29 +01:00
|
|
|
# Copyright (C) 2015-2023
|
2017-05-19 19:41:06 +02:00
|
|
|
# Leandro Toledo de Souza <devs@python-telegram-bot.org>
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Lesser Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Lesser Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser Public License
|
|
|
|
# along with this program. If not, see [http://www.gnu.org/licenses/].
|
|
|
|
"""This module contains an object that represents a Telegram ShippingQuery."""
|
|
|
|
|
2023-01-01 14:24:30 +01:00
|
|
|
from typing import TYPE_CHECKING, Optional, Sequence
|
2020-10-31 16:33:34 +01:00
|
|
|
|
2022-05-05 09:27:54 +02:00
|
|
|
from telegram._payment.shippingaddress import ShippingAddress
|
|
|
|
from telegram._payment.shippingoption import ShippingOption
|
|
|
|
from telegram._telegramobject import TelegramObject
|
|
|
|
from telegram._user import User
|
2021-10-10 15:10:21 +02:00
|
|
|
from telegram._utils.defaultvalue import DEFAULT_NONE
|
|
|
|
from telegram._utils.types import JSONDict, ODVInput
|
2020-10-09 17:22:07 +02:00
|
|
|
|
2020-10-06 19:28:40 +02:00
|
|
|
if TYPE_CHECKING:
|
|
|
|
from telegram import Bot
|
2017-05-19 19:41:06 +02:00
|
|
|
|
|
|
|
|
|
|
|
class ShippingQuery(TelegramObject):
|
2017-09-01 08:43:08 +02:00
|
|
|
"""This object contains information about an incoming shipping query.
|
2017-05-19 19:41:06 +02:00
|
|
|
|
2020-07-14 21:33:56 +02:00
|
|
|
Objects of this class are comparable in terms of equality. Two objects of this class are
|
|
|
|
considered equal, if their :attr:`id` is equal.
|
|
|
|
|
2017-05-19 19:41:06 +02:00
|
|
|
Note:
|
2022-04-24 12:38:09 +02:00
|
|
|
In Python :keyword:`from` is a reserved word use :paramref:`from_user` instead.
|
2017-05-19 19:41:06 +02:00
|
|
|
|
2020-12-30 15:59:50 +01:00
|
|
|
Args:
|
2017-07-23 22:33:08 +02:00
|
|
|
id (:obj:`str`): Unique query identifier.
|
|
|
|
from_user (:class:`telegram.User`): User who sent the query.
|
|
|
|
invoice_payload (:obj:`str`): Bot specified invoice payload.
|
|
|
|
shipping_address (:class:`telegram.ShippingAddress`): User specified shipping address.
|
|
|
|
|
2020-12-30 15:59:50 +01:00
|
|
|
Attributes:
|
2017-07-23 22:33:08 +02:00
|
|
|
id (:obj:`str`): Unique query identifier.
|
|
|
|
from_user (:class:`telegram.User`): User who sent the query.
|
|
|
|
invoice_payload (:obj:`str`): Bot specified invoice payload.
|
|
|
|
shipping_address (:class:`telegram.ShippingAddress`): User specified shipping address.
|
2022-10-07 11:51:53 +02:00
|
|
|
|
2017-09-01 08:43:08 +02:00
|
|
|
|
2017-05-19 19:41:06 +02:00
|
|
|
"""
|
|
|
|
|
2021-10-21 11:17:12 +02:00
|
|
|
__slots__ = ("invoice_payload", "shipping_address", "id", "from_user")
|
2021-05-29 16:18:16 +02:00
|
|
|
|
2020-10-06 19:28:40 +02:00
|
|
|
def __init__(
|
2020-11-05 18:12:01 +01:00
|
|
|
self,
|
2022-10-07 11:51:53 +02:00
|
|
|
id: str, # pylint: disable=redefined-builtin
|
2020-10-06 19:28:40 +02:00
|
|
|
from_user: User,
|
|
|
|
invoice_payload: str,
|
|
|
|
shipping_address: ShippingAddress,
|
2022-10-07 11:51:53 +02:00
|
|
|
*,
|
|
|
|
api_kwargs: JSONDict = None,
|
2020-10-06 19:28:40 +02:00
|
|
|
):
|
2022-10-07 11:51:53 +02:00
|
|
|
super().__init__(api_kwargs=api_kwargs)
|
2021-10-08 08:17:00 +02:00
|
|
|
self.id = id # pylint: disable=invalid-name
|
2017-05-19 19:41:06 +02:00
|
|
|
self.from_user = from_user
|
|
|
|
self.invoice_payload = invoice_payload
|
|
|
|
self.shipping_address = shipping_address
|
|
|
|
|
|
|
|
self._id_attrs = (self.id,)
|
|
|
|
|
2022-12-15 15:00:36 +01:00
|
|
|
self._freeze()
|
|
|
|
|
2017-07-23 21:14:38 +02:00
|
|
|
@classmethod
|
2020-10-06 19:28:40 +02:00
|
|
|
def de_json(cls, data: Optional[JSONDict], bot: "Bot") -> Optional["ShippingQuery"]:
|
2021-05-27 09:38:17 +02:00
|
|
|
"""See :meth:`telegram.TelegramObject.de_json`."""
|
|
|
|
data = cls._parse_data(data)
|
2020-10-06 19:28:40 +02:00
|
|
|
|
2017-05-19 19:41:06 +02:00
|
|
|
if not data:
|
|
|
|
return None
|
|
|
|
|
2022-10-07 11:51:53 +02:00
|
|
|
data["from_user"] = User.de_json(data.pop("from", None), bot)
|
2017-05-19 19:41:06 +02:00
|
|
|
data["shipping_address"] = ShippingAddress.de_json(data.get("shipping_address"), bot)
|
|
|
|
|
2022-10-07 11:51:53 +02:00
|
|
|
return super().de_json(data=data, bot=bot)
|
2017-05-19 19:41:06 +02:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def answer( # pylint: disable=invalid-name
|
2020-12-30 13:41:07 +01:00
|
|
|
self,
|
|
|
|
ok: bool,
|
2023-01-01 14:24:30 +01:00
|
|
|
shipping_options: Sequence[ShippingOption] = None,
|
2020-12-30 13:41:07 +01:00
|
|
|
error_message: str = None,
|
2022-05-18 17:18:44 +02:00
|
|
|
*,
|
2022-04-24 12:38:09 +02:00
|
|
|
read_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
write_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
connect_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
pool_timeout: ODVInput[float] = DEFAULT_NONE,
|
2020-12-30 13:41:07 +01:00
|
|
|
api_kwargs: JSONDict = None,
|
|
|
|
) -> bool:
|
2017-09-01 08:43:08 +02:00
|
|
|
"""Shortcut for::
|
2017-07-23 22:33:08 +02:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
await bot.answer_shipping_query(update.shipping_query.id, *args, **kwargs)
|
2017-07-23 22:33:08 +02:00
|
|
|
|
2020-12-30 13:41:07 +01:00
|
|
|
For the documentation of the arguments, please see
|
|
|
|
:meth:`telegram.Bot.answer_shipping_query`.
|
2017-07-23 22:33:08 +02:00
|
|
|
|
2017-09-01 08:43:08 +02:00
|
|
|
"""
|
2022-04-24 12:38:09 +02:00
|
|
|
return await self.get_bot().answer_shipping_query(
|
2020-12-30 13:41:07 +01:00
|
|
|
shipping_query_id=self.id,
|
|
|
|
ok=ok,
|
|
|
|
shipping_options=shipping_options,
|
|
|
|
error_message=error_message,
|
2022-04-24 12:38:09 +02:00
|
|
|
read_timeout=read_timeout,
|
|
|
|
write_timeout=write_timeout,
|
|
|
|
connect_timeout=connect_timeout,
|
|
|
|
pool_timeout=pool_timeout,
|
2020-12-30 13:41:07 +01:00
|
|
|
api_kwargs=api_kwargs,
|
|
|
|
)
|