TicketAssociatedObject
Object that can be associated with a ticket. The object can be a cart or an order. TicketAssociatedObject
export interface TicketAssociatedObject {
'code': string;
'modifiedAt'?: string;
'type': string;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
code | Required | string | Associated object code. {string} TicketAssociatedObject |
modifiedAt | Optional | string | Date and time of last modification. {string} TicketAssociatedObject |
type | Required | string | Type of associated object: Cart, SavedCart or Order. {string} TicketAssociatedObject |