Alokai

ReturnRequest

Representation of a return request for an order ReturnRequest

export interface ReturnRequest {
	'cancellable'?: boolean;
	'code'?: string;
	'creationTime'?: string;
	'deliveryCost'?: Price;
	'order'?: Order;
	'refundDeliveryCost'?: boolean;
	'returnEntries'?: Array<ReturnRequestEntry>;
	'returnLabelDownloadUrl'?: string;
	'rma'?: string;
	'status'?: string;
	'subTotal'?: Price;
	'totalPrice'?: Price;
}

Properties

NameRequiredTypeDescription
cancellableOptionalbooleanBoolean flag for whether the return request is cancellable {boolean} ReturnRequest
codeOptionalstringReturn request code {string} ReturnRequest
creationTimeOptionalstringDate of the return request creation {string} ReturnRequest
deliveryCostOptionalPrice{Price} ReturnRequest
orderOptionalOrder{Order} ReturnRequest
refundDeliveryCostOptionalbooleanBoolean flag for whether there is a delivery cost for refund {boolean} ReturnRequest
returnEntriesOptionalArray<ReturnRequestEntry>Entries of the return request which contains information about the returned product {Array<ReturnRequestEntry>} ReturnRequest
returnLabelDownloadUrlOptionalstringURL of the return label {string} ReturnRequest
rmaOptionalstringReturn merchandise authorization number {string} ReturnRequest
statusOptionalstringStatus of return request {string} ReturnRequest
subTotalOptionalPrice{Price} ReturnRequest
totalPriceOptionalPrice{Price} ReturnRequest

Referenced Types

On this page