InputPaymentCredentialsSaved

class pyrogram.raw.types.InputPaymentCredentialsSaved

Saved payment credentials

Constructor of InputPaymentCredentials.

Details:
  • Layer: 223

  • ID: C10EB2CF

Parameters:
  • id (str) – Credential ID

  • tmp_password (bytes) – Temporary password

TL Schema

inputPaymentCredentialsSaved#c10eb2cf
id:string
tmp_password:bytes

= InputPaymentCredentials

Parameter Tree

InputPaymentCredentialsSaved
├── idstring
└── tmp_passwordbytes

Example

InputPaymentCredentialsSaved(
    id="text",
    tmp_password=b"data",
)