ChannelAdminLogEventActionChangeLocation
- class pyrogram.raw.types.ChannelAdminLogEventActionChangeLocation
The geogroup location was changed
Constructor of
ChannelAdminLogEventAction.- Details:
Layer:
223ID:
E6B76AE
- Parameters:
prev_value (
ChannelLocation) – Previous locationnew_value (
ChannelLocation) – New location
TL Schema
channelAdminLogEventActionChangeLocation#e6b76ae
prev_value:ChannelLocation
new_value:ChannelLocation
= ChannelAdminLogEventAction
Parameter Tree
ChannelAdminLogEventActionChangeLocation
├── prev_value →
ChannelLocation│ ├──
ChannelLocationEmpty│ └──
ChannelLocation│ ├── geo_point →
GeoPoint│ │ ├──
GeoPointEmpty│ │ └──
GeoPoint│ │ ├── long →
double│ │ ├── lat →
double│ │ ├── access_hash →
long│ │ └── accuracy_radius →
int (optional)│ └── address →
string└── new_value →
ChannelLocation└──
ChannelLocation├── geo_point →
GeoPoint│ ├──
GeoPointEmpty│ └──
GeoPoint│ ├── long →
double│ ├── lat →
double│ ├── access_hash →
long│ └── accuracy_radius →
int (optional)└── address →
stringExample
ChannelAdminLogEventActionChangeLocation(
prev_value=ChannelLocationEmpty(),
new_value=ChannelLocationEmpty(),
)