Stores information about returns connected to an Order.

interface ReturnInfo {
    items: ReturnItem[];
    returnDate?: string;
    returnTrackingId?: string;
}

Properties

items: ReturnItem[]

Information on the Line Items or Custom Line Items returned.

returnDate?: string

Date and time (UTC) the return is initiated.

returnTrackingId?: string

User-defined identifier to track the return.