/**
* 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.
*/
/**
* A delegation certificate Only for 'join_pool' the 'pool' property is required.
* @export
* @interface ApiCoinSelectionCertificates
*/
export interface ApiCoinSelectionCertificates {
/**
*
* @type {string}
* @memberof ApiCoinSelectionCertificates
*/
certificate_type: ApiCoinSelectionCertificatesCertificateTypeEnum;
/**
* A unique identifier for the pool.
* @type {string}
* @memberof ApiCoinSelectionCertificates
*/
pool?: any;
/**
*
* @type {Array<string>}
* @memberof ApiCoinSelectionCertificates
*/
reward_account_path: string[];
}
/**
* @export
* @enum {string}
*/
export declare enum ApiCoinSelectionCertificatesCertificateTypeEnum {
JoinPool = "join_pool",
QuitPool = "quit_pool",
RegisterRewardAccount = "register_reward_account"
}