interface CustomObject {
    container: string;
    createdAt: string;
    createdBy?: CreatedBy;
    id: string;
    key: string;
    lastModifiedAt: string;
    lastModifiedBy?: LastModifiedBy;
    value: any;
    version: number;
}

Hierarchy

Properties

container: string

Namespace to group CustomObjects.

createdAt: string

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

createdBy?: CreatedBy

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

id: string

Unique identifier of the CustomObject.

key: string

User-defined unique identifier of the CustomObject within the defined container.

lastModifiedAt: string

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

lastModifiedBy?: LastModifiedBy

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

value: any

JSON standard types Number, String, Boolean, Array, Object, and common API data types. For values of type Reference the integrity of the data is not guaranteed. If the referenced object is deleted, the API does not delete the corresponding reference to it and the value points to a non-existing object in such case.

version: number

Current version of the CustomObject.

Generated using TypeDoc