phone.ToggleGroupCallSettings
- class pyrogram.raw.functions.phone.ToggleGroupCallSettings
Change group call settings
- Details:
Layer:
223ID:
974392F2
- Parameters:
call (
InputGroupCall) – Group callreset_invite_hash (
bool, optional) – Invalidate existing invite linksjoin_muted (
bool, optional) – Whether all users will that join this group call are muted by default upon joining the group callmessages_enabled (
bool, optional)send_paid_messages_stars (
int64-bit, optional)
- Returns:
TL Schema
phone.toggleGroupCallSettings#974392f2
flags:#
reset_invite_hash:flags.1?true
call:InputGroupCall
join_muted:flags.0?Bool
messages_enabled:flags.2?Bool
send_paid_messages_stars:flags.3?long
= Updates
Parameter Tree
ToggleGroupCallSettings
├── reset_invite_hash →
true (optional)├── call →
InputGroupCall│ ├──
InputGroupCall│ │ ├── id →
long│ │ └── access_hash →
long│ ├──
InputGroupCallSlug│ │ └── slug →
string│ └── msg_id →
int├── join_muted →
Bool (optional)├── messages_enabled →
Bool (optional)└── send_paid_messages_stars →
long (optional)Example
await app.invoke(
ToggleGroupCallSettings(
reset_invite_hash=None,
call=InputGroupCall(
id=0,
access_hash=0
),
join_muted=None,
messages_enabled=None,
send_paid_messages_stars=0,
)
)