Source code for hydrogram.raw.functions.payments.send_payment_form

#  Hydrogram - Telegram MTProto API Client Library for Python
#  Copyright (C) 2023-present Hydrogram <https://hydrogram.org>
#
#  This file is part of Hydrogram.
#
#  Hydrogram is free software: you can redistribute it and/or modify
#  it under the terms of the GNU Lesser General Public License as published
#  by the Free Software Foundation, either version 3 of the License, or
#  (at your option) any later version.
#
#  Hydrogram 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 General Public License for more details.
#
#  You should have received a copy of the GNU Lesser General Public License
#  along with Hydrogram.  If not, see <http://www.gnu.org/licenses/>.

from io import BytesIO

from hydrogram.raw.core.primitives import Int, Long, Int128, Int256, Bool, Bytes, String, Double, Vector
from hydrogram.raw.core import TLObject
from hydrogram import raw
from typing import List, Optional, Any

# # # # # # # # # # # # # # # # # # # # # # # #
#               !!! WARNING !!!               #
#          This is a generated file!          #
# All changes made in this file will be lost! #
# # # # # # # # # # # # # # # # # # # # # # # #


[docs] class SendPaymentForm(TLObject): # type: ignore """Send compiled payment form Details: - Layer: ``181`` - ID: ``2D03522F`` Parameters: form_id (``int`` ``64-bit``): Form ID invoice (:obj:`InputInvoice <hydrogram.raw.base.InputInvoice>`): Invoice credentials (:obj:`InputPaymentCredentials <hydrogram.raw.base.InputPaymentCredentials>`): Payment credentials requested_info_id (``str``, *optional*): ID of saved and validated order info shipping_option_id (``str``, *optional*): Chosen shipping option ID tip_amount (``int`` ``64-bit``, *optional*): Tip, in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies). Returns: :obj:`payments.PaymentResult <hydrogram.raw.base.payments.PaymentResult>` """ __slots__: List[str] = ["form_id", "invoice", "credentials", "requested_info_id", "shipping_option_id", "tip_amount"] ID = 0x2d03522f QUALNAME = "functions.payments.SendPaymentForm" def __init__(self, *, form_id: int, invoice: "raw.base.InputInvoice", credentials: "raw.base.InputPaymentCredentials", requested_info_id: Optional[str] = None, shipping_option_id: Optional[str] = None, tip_amount: Optional[int] = None) -> None: self.form_id = form_id # long self.invoice = invoice # InputInvoice self.credentials = credentials # InputPaymentCredentials self.requested_info_id = requested_info_id # flags.0?string self.shipping_option_id = shipping_option_id # flags.1?string self.tip_amount = tip_amount # flags.2?long @staticmethod def read(b: BytesIO, *args: Any) -> "SendPaymentForm": flags = Int.read(b) form_id = Long.read(b) invoice = TLObject.read(b) requested_info_id = String.read(b) if flags & (1 << 0) else None shipping_option_id = String.read(b) if flags & (1 << 1) else None credentials = TLObject.read(b) tip_amount = Long.read(b) if flags & (1 << 2) else None return SendPaymentForm(form_id=form_id, invoice=invoice, credentials=credentials, requested_info_id=requested_info_id, shipping_option_id=shipping_option_id, tip_amount=tip_amount) def write(self, *args) -> bytes: b = BytesIO() b.write(Int(self.ID, False)) flags = 0 flags |= (1 << 0) if self.requested_info_id is not None else 0 flags |= (1 << 1) if self.shipping_option_id is not None else 0 flags |= (1 << 2) if self.tip_amount is not None else 0 b.write(Int(flags)) b.write(Long(self.form_id)) b.write(self.invoice.write()) if self.requested_info_id is not None: b.write(String(self.requested_info_id)) if self.shipping_option_id is not None: b.write(String(self.shipping_option_id)) b.write(self.credentials.write()) if self.tip_amount is not None: b.write(Long(self.tip_amount)) return b.getvalue()