PaymentFormMethod

class pyrogram.raw.types.PaymentFormMethod

Represents an additional payment method

Constructor of PaymentFormMethod.

Details:
  • Layer: 223

  • ID: 88F8F21B

Parameters:
  • url (str) – URL to open in a webview to process the payment

  • title (str) – Payment method description

TL Schema

paymentFormMethod#88f8f21b
url:string
title:string

= PaymentFormMethod

Parameter Tree

PaymentFormMethod
├── urlstring
└── titlestring

Example

PaymentFormMethod(
    url="https://google.com",
    title="text",
)