ChannelAdminLogEventActionChangeLocation

class pyrogram.raw.types.ChannelAdminLogEventActionChangeLocation

The geogroup location was changed

Constructor of ChannelAdminLogEventAction.

Details:
  • Layer: 227

  • ID: E6B76AE

Parameters:

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 → string

Example

ChannelAdminLogEventActionChangeLocation(
    prev_value=ChannelLocationEmpty(),
    new_value=ChannelLocationEmpty(),
)