/** * 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. */ 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; }