ChannelAdminLogEventActionExportedInviteEdit
- class pyrogram.raw.types.ChannelAdminLogEventActionExportedInviteEdit
A chat invite was edited
Constructor of
ChannelAdminLogEventAction.- Details:
Layer:
223ID:
E90EBB59
- Parameters:
prev_invite (
ExportedChatInvite) – Previous chat invite informationnew_invite (
ExportedChatInvite) – New chat invite information
TL Schema
channelAdminLogEventActionExportedInviteEdit#e90ebb59
prev_invite:ExportedChatInvite
new_invite:ExportedChatInvite
= ChannelAdminLogEventAction
Parameter Tree
ChannelAdminLogEventActionExportedInviteEdit
├── prev_invite →
ExportedChatInvite│ ├──
ChatInviteExported│ │ ├── revoked →
true (optional)│ │ ├── permanent →
true (optional)│ │ ├── request_needed →
true (optional)│ │ ├── link →
string│ │ ├── admin_id →
long│ │ ├── date →
int│ │ ├── start_date →
int (optional)│ │ ├── expire_date →
int (optional)│ │ ├── usage_limit →
int (optional)│ │ ├── usage →
int (optional)│ │ ├── requested →
int (optional)│ │ ├── subscription_expired →
int (optional)│ │ ├── title →
string (optional)│ │ └── subscription_pricing →
StarsSubscriptionPricing (optional)│ │ └──
StarsSubscriptionPricing│ │ ├── period →
int│ │ └── amount →
long└── new_invite →
ExportedChatInvite│ ├── revoked →
true (optional)│ ├── permanent →
true (optional)│ ├── request_needed →
true (optional)│ ├── link →
string│ ├── admin_id →
long│ ├── date →
int│ ├── start_date →
int (optional)│ ├── expire_date →
int (optional)│ ├── usage_limit →
int (optional)│ ├── usage →
int (optional)│ ├── requested →
int (optional)│ ├── subscription_expired →
int (optional)│ ├── title →
string (optional)│ └── subscription_pricing →
StarsSubscriptionPricing (optional)│ └──
StarsSubscriptionPricing│ ├── period →
int│ └── amount →
longExample
ChannelAdminLogEventActionExportedInviteEdit(
prev_invite=ChatInviteExported(
link="text",
admin_id=0,
date=0
),
new_invite=ChatInviteExported(
link="text",
admin_id=0,
date=0
),
)