/**
 * 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 preferred location to leave packages at the destination address.
 * @export
 * @interface DropOffLocation
 */
export interface DropOffLocation {
    /**
     * Specifies the preferred location to leave the package at the destination address.
     * @type {string}
     * @memberof DropOffLocation
     */
    'type': DropOffLocationTypeEnum;
    /**
     * Additional information about the drop-off location that can vary depending on the type of drop-off location specified in the `type` field. If the `type` is set to `FALLBACK_NEIGHBOR_DELIVERY`, the `attributes` object should include the exact keys `neighborName` and `houseNumber` to provide the name and house number of the designated neighbor.
     * @type {{ [key: string]: string; }}
     * @memberof DropOffLocation
     */
    'attributes'?: {
        [key: string]: string;
    };
}
export declare const DropOffLocationTypeEnum: {
    readonly FrontDoor: "FRONT_DOOR";
    readonly DeliveryBox: "DELIVERY_BOX";
    readonly GasMeterBox: "GAS_METER_BOX";
    readonly BicycleBasket: "BICYCLE_BASKET";
    readonly Garage: "GARAGE";
    readonly Receptionist: "RECEPTIONIST";
    readonly FallbackNeighborDelivery: "FALLBACK_NEIGHBOR_DELIVERY";
    readonly DoNotLeaveUnattended: "DO_NOT_LEAVE_UNATTENDED";
};
export type DropOffLocationTypeEnum = typeof DropOffLocationTypeEnum[keyof typeof DropOffLocationTypeEnum];
