Alokai

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

NameRequiredTypeDescription
codeRequiredstringAssociated object code. {string} TicketAssociatedObject
modifiedAtOptionalstringDate and time of last modification. {string} TicketAssociatedObject
typeRequiredstringType of associated object: Cart, SavedCart or Order. {string} TicketAssociatedObject

On this page