/** * 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. */ /** * Restore from account public key * @export * @interface ApiAccountPostData */ export interface ApiAccountPostData { /** * * @type {string} * @memberof ApiAccountPostData */ name: any; /** * An extended account public key (public key + chain code) * @type {string} * @memberof ApiAccountPostData */ account_public_key: any; /** * Number of consecutive unused addresses allowed. **IMPORTANT DISCLAIMER:** Using values other than `20` automatically makes your wallet invalid with regards to BIP-44 address discovery. It means that you **will not** be able to fully restore your wallet in a different software which is strictly following BIP-44. Beside, using large gaps is **not recommended** as it may induce important performance degradations. Use at your own risks. * @type {number} * @memberof ApiAccountPostData */ address_pool_gap?: any; }