/**
 * Apideck
 * The Apideck OpenAPI Spec: SDK Optimized
 *
 * The version of the OpenAPI document: 10.13.0
 * Contact: support@apideck.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 * Current status of the order.
 * @export
 * @enum {string}
 */
export declare enum EcommerceOrderStatus {
    active = "active",
    completed = "completed",
    cancelled = "cancelled",
    archived = "archived",
    unknown = "unknown",
    other = "other"
}
export declare function EcommerceOrderStatusFromJSON(json: any): EcommerceOrderStatus;
export declare function EcommerceOrderStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): EcommerceOrderStatus;
export declare function EcommerceOrderStatusToJSON(value?: EcommerceOrderStatus | null): any;
