/**
 * ShipStation API v2
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: 2.0.0
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 *
 * @export
 * @interface PartialShippingAddressToGeolocationInner
 */
export interface PartialShippingAddressToGeolocationInner {
    /**
     * Enum of available type of geolocation items:   - \'what3words\' functionality allows to specify a location by providing 3 words that have been assign to the specific location see [link](https://what3words.com/business) for more details.
     * @type {string}
     * @memberof PartialShippingAddressToGeolocationInner
     */
    'type'?: PartialShippingAddressToGeolocationInnerTypeEnum;
    /**
     * value of the geolocation item
     * @type {string}
     * @memberof PartialShippingAddressToGeolocationInner
     */
    'value'?: string;
}
export declare const PartialShippingAddressToGeolocationInnerTypeEnum: {
    readonly What3words: "what3words";
};
export type PartialShippingAddressToGeolocationInnerTypeEnum = typeof PartialShippingAddressToGeolocationInnerTypeEnum[keyof typeof PartialShippingAddressToGeolocationInnerTypeEnum];
