Interface ChatEventLocationChanged

The supergroup location was changed. Subtype of ChatEventAction.

interface ChatEventLocationChanged {
    @type: "chatEventLocationChanged";
    new_location: ChatLocation;
    old_location: ChatLocation;
}

Properties

@type: "chatEventLocationChanged"
new_location: ChatLocation

New location; may be null.

old_location: ChatLocation

Previous location; may be null.