AutoSaveException

class pyrogram.raw.base.AutoSaveException

Peer-specific autosave settings

Constructors:

This base type has 1 constructor available.

AutoSaveException

Peer-specific media autosave settings

TL Schema

autoSaveException#81602d47
peer:Peer
settings:AutoSaveSettings

= AutoSaveException

Parameter Tree

AutoSaveException
├── peerPeer
│ ├── PeerUser
│ │ └── user_idlong
│ ├── PeerChat
│ │ └── chat_idlong
│ └── PeerChannel
│ └── channel_idlong
└── settingsAutoSaveSettings
├── photostrue (optional)
├── videostrue (optional)
└── video_max_sizelong (optional)

Example

AutoSaveException(
    peer=PeerUser(user_id=0),
    settings=AutoSaveSettings(
        photos=None,
        videos=None,
        video_max_size=None
    ),
)