mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-04 13:48:32 -05:00
working search with flat endpoint
This commit is contained in:
41
vue3/src/openapi/models/MethodEnum.ts
Normal file
41
vue3/src/openapi/models/MethodEnum.ts
Normal file
@@ -0,0 +1,41 @@
|
||||
/* 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.
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* * `DB` - Dropbox
|
||||
* * `NEXTCLOUD` - Nextcloud
|
||||
* * `LOCAL` - Local
|
||||
* @export
|
||||
*/
|
||||
export const MethodEnum = {
|
||||
Db: 'DB',
|
||||
Nextcloud: 'NEXTCLOUD',
|
||||
Local: 'LOCAL'
|
||||
} as const;
|
||||
export type MethodEnum = typeof MethodEnum[keyof typeof MethodEnum];
|
||||
|
||||
|
||||
export function MethodEnumFromJSON(json: any): MethodEnum {
|
||||
return MethodEnumFromJSONTyped(json, false);
|
||||
}
|
||||
|
||||
export function MethodEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): MethodEnum {
|
||||
return json as MethodEnum;
|
||||
}
|
||||
|
||||
export function MethodEnumToJSON(value?: MethodEnum | null): any {
|
||||
return value as any;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user