/** * keepkey-sdk-server * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.1 * * * 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 { TypesBnbAddress } from './TypesBnbAddress'; /** * * @export * @interface BinanceGetAddress200Response */ export interface BinanceGetAddress200Response { /** * * @type {TypesBnbAddress} * @memberof BinanceGetAddress200Response */ address: TypesBnbAddress; } /** * Check if a given object implements the BinanceGetAddress200Response interface. */ export declare function instanceOfBinanceGetAddress200Response(value: object): boolean; export declare function BinanceGetAddress200ResponseFromJSON(json: any): BinanceGetAddress200Response; export declare function BinanceGetAddress200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): BinanceGetAddress200Response; export declare function BinanceGetAddress200ResponseToJSON(value?: BinanceGetAddress200Response | null): any;