/* 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 WithdrawHistoryCursor */ export interface WithdrawHistoryCursor { /** * * @type {string} * @memberof WithdrawHistoryCursor */ secure_id: string; /** * * @type {string} * @memberof WithdrawHistoryCursor */ fast_id: string; } /** * Check if a given object implements the WithdrawHistoryCursor interface. */ export function instanceOfWithdrawHistoryCursor(value: object): value is WithdrawHistoryCursor { if (!('secure_id' in value) || value['secure_id'] === undefined) return false; if (!('fast_id' in value) || value['fast_id'] === undefined) return false; return true; } export function WithdrawHistoryCursorFromJSON(json: any): WithdrawHistoryCursor { return WithdrawHistoryCursorFromJSONTyped(json, false); } export function WithdrawHistoryCursorFromJSONTyped(json: any, ignoreDiscriminator: boolean): WithdrawHistoryCursor { if (json == null) { return json; } return { 'secure_id': json['secure_id'], 'fast_id': json['fast_id'], }; } export function WithdrawHistoryCursorToJSON(value?: WithdrawHistoryCursor | null): any { if (value == null) { return value; } return { 'secure_id': value['secure_id'], 'fast_id': value['fast_id'], }; }