interface OrderLabel {
    customerEmail: string;
    orderNumber: string;
    type: "OrderLabel";
}

Properties

customerEmail: string

Email address of the Customer that the Order belongs to.

orderNumber: string

User-defined unique identifier of the Order that is unique across a Project.

type: "OrderLabel"