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
| Name | Required | Type | Description |
|---|---|---|---|
cancellable | Optional | boolean | Boolean flag for whether the return request is cancellable {boolean} ReturnRequest |
code | Optional | string | Return request code {string} ReturnRequest |
creationTime | Optional | string | Date of the return request creation {string} ReturnRequest |
deliveryCost | Optional | Price | {Price} ReturnRequest |
order | Optional | Order | {Order} ReturnRequest |
refundDeliveryCost | Optional | boolean | Boolean flag for whether there is a delivery cost for refund {boolean} ReturnRequest |
returnEntries | Optional | Array<ReturnRequestEntry> | Entries of the return request which contains information about the returned product {Array<ReturnRequestEntry>} ReturnRequest |
returnLabelDownloadUrl | Optional | string | URL of the return label {string} ReturnRequest |
rma | Optional | string | Return merchandise authorization number {string} ReturnRequest |
status | Optional | string | Status of return request {string} ReturnRequest |
subTotal | Optional | Price | {Price} ReturnRequest |
totalPrice | Optional | Price | {Price} ReturnRequest |