mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-02 04:39:54 -05:00
69 lines
1.4 KiB
TypeScript
69 lines
1.4 KiB
TypeScript
/* tslint:disable */
|
|
/* eslint-disable */
|
|
/**
|
|
* Tandoor
|
|
* Tandoor API Docs
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
import { mapValues } from '../runtime';
|
|
/**
|
|
*
|
|
* @export
|
|
* @interface KeywordLabel
|
|
*/
|
|
export interface KeywordLabel {
|
|
/**
|
|
*
|
|
* @type {number}
|
|
* @memberof KeywordLabel
|
|
*/
|
|
readonly id: number;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof KeywordLabel
|
|
*/
|
|
readonly label: string;
|
|
}
|
|
|
|
/**
|
|
* Check if a given object implements the KeywordLabel interface.
|
|
*/
|
|
export function instanceOfKeywordLabel(value: object): boolean {
|
|
if (!('id' in value)) return false;
|
|
if (!('label' in value)) return false;
|
|
return true;
|
|
}
|
|
|
|
export function KeywordLabelFromJSON(json: any): KeywordLabel {
|
|
return KeywordLabelFromJSONTyped(json, false);
|
|
}
|
|
|
|
export function KeywordLabelFromJSONTyped(json: any, ignoreDiscriminator: boolean): KeywordLabel {
|
|
if (json == null) {
|
|
return json;
|
|
}
|
|
return {
|
|
|
|
'id': json['id'],
|
|
'label': json['label'],
|
|
};
|
|
}
|
|
|
|
export function KeywordLabelToJSON(value?: Omit<KeywordLabel, 'id'|'label'> | null): any {
|
|
if (value == null) {
|
|
return value;
|
|
}
|
|
return {
|
|
|
|
};
|
|
}
|
|
|