ChannelAdminLogEventActionChangeLocation

class pyrogram.raw.types.ChannelAdminLogEventActionChangeLocation

The geogroup location was changed

Constructor of ChannelAdminLogEventAction.

Details:
  • Layer: 223

  • ID: E6B76AE

Parameters:

TL Schema

channelAdminLogEventActionChangeLocation#e6b76ae
prev_value:ChannelLocation
new_value:ChannelLocation

= ChannelAdminLogEventAction

Parameter Tree

ChannelAdminLogEventActionChangeLocation
├── prev_valueChannelLocation
│ ├── ChannelLocationEmpty
│ └── ChannelLocation
│ ├── geo_pointGeoPoint
│ │ ├── GeoPointEmpty
│ │ └── GeoPoint
│ │ ├── longdouble
│ │ ├── latdouble
│ │ ├── access_hashlong
│ │ └── accuracy_radiusint (optional)
│ └── addressstring
└── new_valueChannelLocation
└── ChannelLocation
├── geo_pointGeoPoint
│ ├── GeoPointEmpty
│ └── GeoPoint
│ ├── longdouble
│ ├── latdouble
│ ├── access_hashlong
│ └── accuracy_radiusint (optional)
└── addressstring

Example

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