interface OrderEdit {
    comment?: string;
    createdAt: string;
    createdBy?: CreatedBy;
    custom?: CustomFields;
    id: string;
    key?: string;
    lastModifiedAt: string;
    lastModifiedBy?: LastModifiedBy;
    resource: OrderReference;
    result: OrderEditResult;
    stagedActions: StagedOrderUpdateAction[];
    version: number;
}

Hierarchy

Properties

comment?: string

This field can be used to add textual information regarding the edit.

createdAt: string
createdBy?: CreatedBy

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

custom?: CustomFields
id: string

Unique identifier of the OrderEdit.

key?: string

User-defined unique identifier of the OrderEdit.

lastModifiedAt: string
lastModifiedBy?: LastModifiedBy

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

resource: OrderReference

The order to be updated with this edit.

Contains a preview of the changes in case of unapplied edit. For applied edits, it contains the summary of the changes.

stagedActions: StagedOrderUpdateAction[]

The actions to apply to the Order. Cannot be updated after the edit has been applied.

version: number

The current version of the OrderEdit.

Generated using TypeDoc