sarga-cardano-wallet-js-dist/models/inline-response20010.d.ts

75 lines
1.6 KiB
TypeScript
Raw Permalink Normal View History

2023-08-07 23:20:23 +00:00
/**
* Cardano Wallet Backend API
* <p align=\"right\"><img style=\"position: relative; top: -10em; margin-bottom: -12em;\" width=\"20%\" src=\"https://cardanodocs.com/img/cardano.png\"></img></p>
*
* 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"
}