/** * 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 CustomerType: { readonly Guest: "guest"; readonly Member: "member"; }; export type CustomerType = typeof CustomerType[keyof typeof CustomerType]; export declare function instanceOfCustomerType(value: any): boolean; export declare function CustomerTypeFromJSON(json: any): CustomerType; export declare function CustomerTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomerType; export declare function CustomerTypeToJSON(value?: CustomerType | null): any; export declare function CustomerTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): CustomerType;