/** * Cardano Wallet Backend API *
* * OpenAPI spec version: 2021.3.4 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ /** * * @export * @interface InlineResponse20010 */ export interface InlineResponse20010 { /** * A unique identifier for the wallet * @type {string} * @memberof InlineResponse20010 */ id: any; /** * * @type {ByronwalletsBalance} * @memberof InlineResponse20010 */ balance: any; /** * * @type {WalletsAssets} * @memberof InlineResponse20010 */ assets: any; /** * Mechanism used for discovering addresses. * @type {string} * @memberof InlineResponse20010 */ discovery: InlineResponse20010DiscoveryEnum; /** * * @type {string} * @memberof InlineResponse20010 */ name: any; /** * * @type {WalletsPassphrase} * @memberof InlineResponse20010 */ passphrase?: any; /** * * @type {WalletsState} * @memberof InlineResponse20010 */ state: any; /** * * @type {WalletsTip} * @memberof InlineResponse20010 */ tip: any; } /** * @export * @enum {string} */ export declare enum InlineResponse20010DiscoveryEnum { Random = "random", Sequential = "sequential" }