Interface ChatActionLocationChanged

Group location has been changed

interface ChatActionLocationChanged {
    new: null | ChatLocation;
    old: null | ChatLocation;
    type: "location_changed";
}

Properties

Properties

new: null | ChatLocation

New location

old: null | ChatLocation

Old location

type: "location_changed"