@sp-api-sdk/fulfillment-outbound-api-2020-07-01
Version:
The Selling Partner API for Fulfillment Outbound lets you create applications that help a seller fulfill Multi-Channel Fulfillment orders using their inventory in Amazon's fulfillment network. You can get information on both potential and existing fulfill
38 lines (37 loc) • 1.59 kB
TypeScript
/**
* Selling Partner APIs for Fulfillment Outbound
* The Selling Partner API for Fulfillment Outbound lets you create applications that help a seller fulfill Multi-Channel Fulfillment orders using their inventory in Amazon\'s fulfillment network. You can get information on both potential and existing fulfillment orders.
*
* The version of the OpenAPI document: 2020-07-01
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* The current delivery status of the package.
* @export
* @enum {string}
*/
export declare const CurrentStatus: {
readonly InTransit: "IN_TRANSIT";
readonly Delivered: "DELIVERED";
readonly Returning: "RETURNING";
readonly Returned: "RETURNED";
readonly Undeliverable: "UNDELIVERABLE";
readonly Delayed: "DELAYED";
readonly AvailableForPickup: "AVAILABLE_FOR_PICKUP";
readonly CustomerAction: "CUSTOMER_ACTION";
readonly Unknown: "UNKNOWN";
readonly OutForDelivery: "OUT_FOR_DELIVERY";
readonly DeliveryAttempted: "DELIVERY_ATTEMPTED";
readonly PickupSuccessful: "PICKUP_SUCCESSFUL";
readonly PickupCancelled: "PICKUP_CANCELLED";
readonly PickupAttempted: "PICKUP_ATTEMPTED";
readonly PickupScheduled: "PICKUP_SCHEDULED";
readonly ReturnRequestAccepted: "RETURN_REQUEST_ACCEPTED";
readonly RefundIssued: "REFUND_ISSUED";
readonly ReturnReceivedInFc: "RETURN_RECEIVED_IN_FC";
};
export type CurrentStatus = typeof CurrentStatus[keyof typeof CurrentStatus];