interface ActivityLocation {
    channelID: string;
    guildID?: null | string;
    id: string;
    kind: ActivityLocationKind;
}

Properties

channelID: string

ID of the Channel.

guildID?: null | string

ID of the Guild.

id: string

Unique identifier for the location.

Enum describing kind of location. gc = guild channel, pc = private channel (dm, gdm).