/** * Kanga Exchange API * API documentation generated from Kanga Exchange source code. * * The version of the OpenAPI document: 1.0.0 * Contact: support@kanga.exchange * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { ApiV2WalletListPost200ResponseOneOfWalletsInnerAddressesInner } from './ApiV2WalletListPost200ResponseOneOfWalletsInnerAddressesInner'; /** * * @export * @interface ApiV2WalletListPost200ResponseOneOfWalletsInner */ export interface ApiV2WalletListPost200ResponseOneOfWalletsInner { /** * * @type {string} * @memberof ApiV2WalletListPost200ResponseOneOfWalletsInner */ currencyCode: string; /** * * @type {string} * @memberof ApiV2WalletListPost200ResponseOneOfWalletsInner */ value: string; /** * * @type {string} * @memberof ApiV2WalletListPost200ResponseOneOfWalletsInner */ lockedValue: string; /** * * @type {Array} * @memberof ApiV2WalletListPost200ResponseOneOfWalletsInner */ addresses: Array; } /** * Check if a given object implements the ApiV2WalletListPost200ResponseOneOfWalletsInner interface. */ export declare function instanceOfApiV2WalletListPost200ResponseOneOfWalletsInner(value: object): boolean; export declare function ApiV2WalletListPost200ResponseOneOfWalletsInnerFromJSON(json: any): ApiV2WalletListPost200ResponseOneOfWalletsInner; export declare function ApiV2WalletListPost200ResponseOneOfWalletsInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiV2WalletListPost200ResponseOneOfWalletsInner; export declare function ApiV2WalletListPost200ResponseOneOfWalletsInnerToJSON(value?: ApiV2WalletListPost200ResponseOneOfWalletsInner | null): any; //# sourceMappingURL=ApiV2WalletListPost200ResponseOneOfWalletsInner.d.ts.map