mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-08 07:38:26 -05:00
working search with flat endpoint
This commit is contained in:
37
vue3/src/openapi/models/BlankEnum.ts
Normal file
37
vue3/src/openapi/models/BlankEnum.ts
Normal file
@@ -0,0 +1,37 @@
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
/**
|
||||
*
|
||||
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
||||
*
|
||||
* The version of the OpenAPI document: 0.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 const BlankEnum = {
|
||||
Empty: ''
|
||||
} as const;
|
||||
export type BlankEnum = typeof BlankEnum[keyof typeof BlankEnum];
|
||||
|
||||
|
||||
export function BlankEnumFromJSON(json: any): BlankEnum {
|
||||
return BlankEnumFromJSONTyped(json, false);
|
||||
}
|
||||
|
||||
export function BlankEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): BlankEnum {
|
||||
return json as BlankEnum;
|
||||
}
|
||||
|
||||
export function BlankEnumToJSON(value?: BlankEnum | null): any {
|
||||
return value as any;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user