Information about a rejected shipping service

Export

RejectedShippingService

interface RejectedShippingService {
    CarrierName: string;
    RejectionReasonCode: string;
    RejectionReasonMessage?: string;
    ShippingServiceId: string;
    ShippingServiceName: string;
}

Properties

CarrierName: string

The rejected shipping carrier name. e.g. USPS

Memberof

RejectedShippingService

RejectionReasonCode: string

A reason code meant to be consumed programatically. e.g. CARRIER_CANNOT_SHIP_TO_POBOX

Memberof

RejectedShippingService

RejectionReasonMessage?: string

A localized human readable description of the rejected reason.

Memberof

RejectedShippingService

ShippingServiceId: string

An Amazon-defined shipping service identifier.

Memberof

RejectedShippingService

ShippingServiceName: string

The rejected shipping service localized name. e.g. FedEx Standard Overnight

Memberof

RejectedShippingService