/* 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 RespWithdrawalDelay */ export interface RespWithdrawalDelay { /** * * @type {number} * @memberof RespWithdrawalDelay */ seconds: number; } /** * Check if a given object implements the RespWithdrawalDelay interface. */ export function instanceOfRespWithdrawalDelay(value: object): value is RespWithdrawalDelay { if (!('seconds' in value) || value['seconds'] === undefined) return false; return true; } export function RespWithdrawalDelayFromJSON(json: any): RespWithdrawalDelay { return RespWithdrawalDelayFromJSONTyped(json, false); } export function RespWithdrawalDelayFromJSONTyped(json: any, ignoreDiscriminator: boolean): RespWithdrawalDelay { if (json == null) { return json; } return { 'seconds': json['seconds'], }; } export function RespWithdrawalDelayToJSON(value?: RespWithdrawalDelay | null): any { if (value == null) { return value; } return { 'seconds': value['seconds'], }; }