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 (view full)

Properties

comment?: string

User-defined information regarding the Order Edit.

createdAt: string

Date and time (UTC) the Order Edit was initially created.

createdBy?: CreatedBy

IDs and references that created the OrderEdit.

custom?: CustomFields

Custom Fields of the Order Edit.

id: string

Unique identifier of the Order Edit.

key?: string

User-defined unique identifier of the Order Edit.

lastModifiedAt: string

Date and time (UTC) the Order Edit was last updated.

lastModifiedBy?: LastModifiedBy

IDs and references that last modified the OrderEdit.

resource: OrderReference

Reference to the Order updated with this edit.

For applied edits, it's a summary of the changes on the Order. For unapplied edits, it's a preview of the changes.

stagedActions: StagedOrderUpdateAction[]

Update actions applied to the Order referenced by resource.

version: number

Current version of the Order Edit.