/** * 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. */ /** * * @export * @interface CosmosGetAddress200Response */ export interface CosmosGetAddress200Response { /** * * @type {string} * @memberof CosmosGetAddress200Response */ address: string; } /** * Check if a given object implements the CosmosGetAddress200Response interface. */ export declare function instanceOfCosmosGetAddress200Response(value: object): boolean; export declare function CosmosGetAddress200ResponseFromJSON(json: any): CosmosGetAddress200Response; export declare function CosmosGetAddress200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CosmosGetAddress200Response; export declare function CosmosGetAddress200ResponseToJSON(value?: CosmosGetAddress200Response | null): any;