payments.SavedInfo

class pyrogram.raw.types.payments.SavedInfo

Saved server-side order information

Constructor of SavedInfo.

Details:
  • Layer: 223

  • ID: FB8FE43C

Parameters:
  • has_saved_credentials (bool, optional) – Whether the user has some saved payment credentials

  • saved_info (PaymentRequestedInfo, optional) – Saved server-side order information

Functions:

This object can be returned by 1 function.

payments.GetSavedInfo

Get saved payment information

TL Schema

payments.savedInfo#fb8fe43c
flags:#
has_saved_credentials:flags.1?true
saved_info:flags.0?PaymentRequestedInfo

= payments.SavedInfo

Parameter Tree

SavedInfo
├── has_saved_credentialstrue (optional)
└── saved_infoPaymentRequestedInfo (optional)
├── namestring (optional)
├── phonestring (optional)
├── emailstring (optional)
└── shipping_addressPostAddress (optional)
└── PostAddress
├── street_line1string
├── street_line2string
├── citystring
├── statestring
├── country_iso2string
└── post_codestring

Example

SavedInfo(
)