/** * My API * API documentation for my Laravel app * * The version of the OpenAPI document: 1.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 */ export declare const OrderStatusId: { readonly _1: "1"; readonly _2: "2"; readonly _3: "3"; readonly _4: "4"; readonly _5: "5"; readonly _7: "7"; readonly _9: "9"; readonly _11: "11"; readonly _13: "13"; readonly _17: "17"; }; export type OrderStatusId = typeof OrderStatusId[keyof typeof OrderStatusId]; export declare function instanceOfOrderStatusId(value: any): boolean; export declare function OrderStatusIdFromJSON(json: any): OrderStatusId; export declare function OrderStatusIdFromJSONTyped(json: any, ignoreDiscriminator: boolean): OrderStatusId; export declare function OrderStatusIdToJSON(value?: OrderStatusId | null): any; export declare function OrderStatusIdToJSONTyped(value: any, ignoreDiscriminator: boolean): OrderStatusId;