/** * 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'; import type { TypesBnbCoin } from './TypesBnbCoin'; /** * * @export * @interface TypesBnbMsgInputOutput */ export interface TypesBnbMsgInputOutput { /** * * @type {Array} * @memberof TypesBnbMsgInputOutput */ coins: Array; /** * * @type {TypesBnbAddress} * @memberof TypesBnbMsgInputOutput */ address: TypesBnbAddress; } /** * Check if a given object implements the TypesBnbMsgInputOutput interface. */ export declare function instanceOfTypesBnbMsgInputOutput(value: object): boolean; export declare function TypesBnbMsgInputOutputFromJSON(json: any): TypesBnbMsgInputOutput; export declare function TypesBnbMsgInputOutputFromJSONTyped(json: any, ignoreDiscriminator: boolean): TypesBnbMsgInputOutput; export declare function TypesBnbMsgInputOutputToJSON(value?: TypesBnbMsgInputOutput | null): any;