Representation for an update of an Order. Use this type to import updates for existing Orders in a Project.

interface OrderPatchImport {
    fields: OrderField;
    orderNumber: string;
}

Properties

Properties

fields: OrderField

Each field referenced must be defined in an already existing order in the project or the import operation state is set to validationFailed.

orderNumber: string

Maps to Order.orderNumber, String that uniquely identifies an order, unique across a project.