/** * 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. */ /** * * @export * @interface ApiAddressData */ export interface ApiAddressData { /** * * @type {string | string | any} * @memberof ApiAddressData */ payment?: any; /** * * @type {string | string | any} * @memberof ApiAddressData */ stake?: any; /** * Script validation level. Required validation sifts off scripts that would not be accepted by the ledger. Recommended level filters out scripts that do not pass required validation and additionally when: * 'all' is non-empty * there are redundant timelocks in a given level * there are no duplicated verification keys in a given level * 'at_least' coeffcient is positive * 'all', 'any' are non-empty and `'at_least' has no less elements in the list than the coeffcient after timelocks are filtered out. * @type {string} * @memberof ApiAddressData */ validation?: ApiAddressDataValidationEnum; } /** * @export * @enum {string} */ export declare enum ApiAddressDataValidationEnum { Required = "required", Recommended = "recommended" }