Files
recipes/models/KeywordLabel.ts

74 lines
1.5 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 { exists, 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 {
let isInstance = true;
isInstance = isInstance && "id" in value;
isInstance = isInstance && "label" in value;
return isInstance;
}
export function KeywordLabelFromJSON(json: any): KeywordLabel {
return KeywordLabelFromJSONTyped(json, false);
}
export function KeywordLabelFromJSONTyped(json: any, ignoreDiscriminator: boolean): KeywordLabel {
if ((json === undefined) || (json === null)) {
return json;
}
return {
'id': json['id'],
'label': json['label'],
};
}
export function KeywordLabelToJSON(value?: KeywordLabel | null): any {
if (value === undefined) {
return undefined;
}
if (value === null) {
return null;
}
return {
};
}