interface OrderEditDraft {
    comment?: string;
    custom?: CustomFieldsDraft;
    dryRun?: boolean;
    key?: string;
    resource: OrderReference;
    stagedActions?: StagedOrderUpdateAction[];
}

Properties

comment?: string

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

The custom fields.

dryRun?: boolean

When set to true the edit is applied on the Order without persisting it.

key?: string

User-defined unique identifier for the OrderEdit.

resource: OrderReference

The order to be updated with this edit.

stagedActions?: StagedOrderUpdateAction[]

The actions to apply to resource.

Generated using TypeDoc