Alokai

CXML

The cXML containing the order to be processed. It consists of a header that contains fields such as order id, order date,ship to and tax. The payload contains information pertaining to individual items ordered. CXML

export interface CXML {
	'dsSignature'?: Array<DsSignature>;
	'headerOrMessageOrRequestOrResponse'?: Array<object>;
	'payloadID'?: string;
	'signatureVersion'?: string;
	'timestamp'?: string;
	'version'?: string;
	'xmlLang'?: string;
}

Properties

NameRequiredTypeDescription
dsSignatureOptionalArray<DsSignature>{Array<DsSignature>} CXML
headerOrMessageOrRequestOrResponseOptionalArray<object>{Array<object>} CXML
payloadIDOptionalstring{string} CXML
signatureVersionOptionalstring{string} CXML
timestampOptionalstring{string} CXML
versionOptionalstring{string} CXML
xmlLangOptionalstring{string} CXML

Referenced Types

On this page