/* tslint:disable */ /* eslint-disable */ /** * * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: * * * 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 ReqSearch */ export interface ReqSearch { /** * * @type {string} * @memberof ReqSearch */ keyword: string; } /** * Check if a given object implements the ReqSearch interface. */ export function instanceOfReqSearch(value: object): value is ReqSearch { if (!('keyword' in value) || value['keyword'] === undefined) return false; return true; } export function ReqSearchFromJSON(json: any): ReqSearch { return ReqSearchFromJSONTyped(json, false); } export function ReqSearchFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReqSearch { if (json == null) { return json; } return { 'keyword': json['keyword'], }; } export function ReqSearchToJSON(value?: ReqSearch | null): any { if (value == null) { return value; } return { 'keyword': value['keyword'], }; }