56 lines
1.4 KiB
TypeScript
56 lines
1.4 KiB
TypeScript
/**
|
|
* 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.
|
|
*/
|
|
import { WalletsAssetsAvailable, WalletswalletIdpaymentfeesAmount } from '.';
|
|
/**
|
|
*
|
|
* @export
|
|
* @interface ApiCoinSelectionInputs
|
|
*/
|
|
export interface ApiCoinSelectionInputs {
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof ApiCoinSelectionInputs
|
|
*/
|
|
address: any;
|
|
/**
|
|
*
|
|
* @type {WalletswalletIdpaymentfeesAmount}
|
|
* @memberof ApiCoinSelectionInputs
|
|
*/
|
|
amount: WalletswalletIdpaymentfeesAmount;
|
|
/**
|
|
* A flat list of assets.
|
|
* @type {Array<WalletsAssetsAvailable>}
|
|
* @memberof ApiCoinSelectionInputs
|
|
*/
|
|
assets?: WalletsAssetsAvailable[];
|
|
/**
|
|
* A unique identifier for this transaction
|
|
* @type {string}
|
|
* @memberof ApiCoinSelectionInputs
|
|
*/
|
|
id: any;
|
|
/**
|
|
* A path for deriving a child key from a parent key.
|
|
* @type {Array<string>}
|
|
* @memberof ApiCoinSelectionInputs
|
|
*/
|
|
derivation_path?: string[];
|
|
/**
|
|
*
|
|
* @type {number}
|
|
* @memberof ApiCoinSelectionInputs
|
|
*/
|
|
index: any;
|
|
}
|