interface Channel {
    address?: Address;
    createdAt: string;
    createdBy?: CreatedBy;
    custom?: CustomFields;
    description?: LocalizedString;
    geoLocation?: GeoJsonPoint;
    id: string;
    key: string;
    lastModifiedAt: string;
    lastModifiedBy?: LastModifiedBy;
    name?: LocalizedString;
    reviewRatingStatistics?: ReviewRatingStatistics;
    roles: string[];
    version: number;
}

Hierarchy

Properties

address?: Address

Address where the Channel is located (for example, if the Channel is a physical store).

createdAt: string

Date and time (UTC) the Channel was initially created.

createdBy?: CreatedBy

Present on resources created after 1 February 2019 except for events not tracked.

custom?: CustomFields

Custom Fields defined for the Channel.

description?: LocalizedString

Description of the Channel.

geoLocation?: GeoJsonPoint

GeoJSON geometry object encoding the geo location of the Channel.

id: string

Unique identifier of the Channel.

key: string

User-defined unique identifier of the Channel.

lastModifiedAt: string

Date and time (UTC) the Channel was last updated.

lastModifiedBy?: LastModifiedBy

Present on resources updated after 1 February 2019 except for events not tracked.

Name of the Channel.

reviewRatingStatistics?: ReviewRatingStatistics

Statistics about the review ratings taken into account for the Channel.

roles: string[]

Roles of the Channel.

version: number

Current version of the Channel.

Generated using TypeDoc