/* 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 ReqHasRefereeByL1Address */ export interface ReqHasRefereeByL1Address { /** * * @type {string} * @memberof ReqHasRefereeByL1Address */ l1_address: string; } /** * Check if a given object implements the ReqHasRefereeByL1Address interface. */ export function instanceOfReqHasRefereeByL1Address(value: object): value is ReqHasRefereeByL1Address { if (!('l1_address' in value) || value['l1_address'] === undefined) return false; return true; } export function ReqHasRefereeByL1AddressFromJSON(json: any): ReqHasRefereeByL1Address { return ReqHasRefereeByL1AddressFromJSONTyped(json, false); } export function ReqHasRefereeByL1AddressFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReqHasRefereeByL1Address { if (json == null) { return json; } return { 'l1_address': json['l1_address'], }; } export function ReqHasRefereeByL1AddressToJSON(value?: ReqHasRefereeByL1Address | null): any { if (value == null) { return value; } return { 'l1_address': value['l1_address'], }; }