/* 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 ReqGetRFQ */ export interface ReqGetRFQ { /** * * @type {string} * @memberof ReqGetRFQ */ auth?: string; /** * * @type {number} * @memberof ReqGetRFQ */ rfq_id: number; } /** * Check if a given object implements the ReqGetRFQ interface. */ export function instanceOfReqGetRFQ(value: object): value is ReqGetRFQ { if (!('rfq_id' in value) || value['rfq_id'] === undefined) return false; return true; } export function ReqGetRFQFromJSON(json: any): ReqGetRFQ { return ReqGetRFQFromJSONTyped(json, false); } export function ReqGetRFQFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReqGetRFQ { if (json == null) { return json; } return { 'auth': json['auth'] == null ? undefined : json['auth'], 'rfq_id': json['rfq_id'], }; } export function ReqGetRFQToJSON(value?: ReqGetRFQ | null): any { if (value == null) { return value; } return { 'auth': value['auth'], 'rfq_id': value['rfq_id'], }; }