interface Zone {
    createdAt: string;
    createdBy?: CreatedBy;
    description?: string;
    id: string;
    key?: string;
    lastModifiedAt: string;
    lastModifiedBy?: LastModifiedBy;
    locations: Location[];
    name: string;
    version: number;
}

Hierarchy

Properties

createdAt: string

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

createdBy?: CreatedBy

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

description?: string

Description of the Zone.

id: string

Unique identifier of the Zone.

key?: string

User-defined unique identifier of the Zone.

lastModifiedAt: string

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

lastModifiedBy?: LastModifiedBy

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

locations: Location[]

List of locations that belong to the Zone.

name: string

Name of the Zone.

version: number

Current version of the Zone.

Generated using TypeDoc