/** * 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 { TypesBnbMsg } from './TypesBnbMsg'; /** * * @export * @interface TypesBnbSignDoc */ export interface TypesBnbSignDoc { /** * * @type {Array} * @memberof TypesBnbSignDoc */ msgs: Array; /** * * @type {string} * @memberof TypesBnbSignDoc */ memo: string; /** * * @type {string} * @memberof TypesBnbSignDoc */ source: string; /** * * @type {string} * @memberof TypesBnbSignDoc */ sequence: string; /** * * @type {string} * @memberof TypesBnbSignDoc */ chain_id: string; /** * * @type {string} * @memberof TypesBnbSignDoc */ account_number: string; } /** * Check if a given object implements the TypesBnbSignDoc interface. */ export declare function instanceOfTypesBnbSignDoc(value: object): boolean; export declare function TypesBnbSignDocFromJSON(json: any): TypesBnbSignDoc; export declare function TypesBnbSignDocFromJSONTyped(json: any, ignoreDiscriminator: boolean): TypesBnbSignDoc; export declare function TypesBnbSignDocToJSON(value?: TypesBnbSignDoc | null): any;