interface ChannelDraft {
    address?: _BaseAddress;
    custom?: CustomFieldsDraft;
    description?: LocalizedString;
    geoLocation?: GeoJsonPoint;
    key: string;
    name?: LocalizedString;
    roles?: string[];
}

Properties

address?: _BaseAddress

Address where the Channel is located.

Custom fields defined for the Channel.

description?: LocalizedString

Description of the Channel.

geoLocation?: GeoJsonPoint

GeoJSON geometry object encoding the geo location of the Channel. Currently, only the Point type is supported.

key: string

User-defined unique identifier for the Channel.

Name of the Channel.

roles?: string[]

Roles of the Channel. Each channel must have at least one role. If not specified, then InventorySupply is assigned by default.

Generated using TypeDoc