A return reason code, a description, and an optional description translation.

Export

ReasonCodeDetails

interface ReasonCodeDetails {
    description: string;
    returnReasonCode: string;
    translatedDescription?: string;
}

Properties

description: string

A human readable description of the return reason code.

Memberof

ReasonCodeDetails

returnReasonCode: string

A code that indicates a valid return reason.

Memberof

ReasonCodeDetails

translatedDescription?: string

A translation of the description. The translation is in the language specified in the Language request parameter.

Memberof

ReasonCodeDetails