/**
* 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 ApiCoinSelectionChange
*/
export interface ApiCoinSelectionChange {
/**
*
* @type {string}
* @memberof ApiCoinSelectionChange
*/
address: any;
/**
*
* @type {WalletswalletIdpaymentfeesAmount}
* @memberof ApiCoinSelectionChange
*/
amount: WalletswalletIdpaymentfeesAmount;
/**
* A flat list of assets.
* @type {Array<WalletsAssetsAvailable>}
* @memberof ApiCoinSelectionChange
*/
assets?: WalletsAssetsAvailable[];
/**
* A path for deriving a child key from a parent key.
* @type {Array<string>}
* @memberof ApiCoinSelectionChange
*/
derivation_path?: string[];
}