/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { ThresholdSignatureScheme } from './ThresholdSignatureScheme'; import { WaasChainEnum } from './WaasChainEnum'; /** * * @export * @interface CreateWaasAccountRequest */ export interface CreateWaasAccountRequest { /** * * @type {WaasChainEnum} * @memberof CreateWaasAccountRequest */ chain: WaasChainEnum; /** * List of client-side key generation identifiers * @type {Array} * @memberof CreateWaasAccountRequest */ clientKeygenIds: Array; /** * * @type {ThresholdSignatureScheme} * @memberof CreateWaasAccountRequest */ thresholdSignatureScheme?: ThresholdSignatureScheme; /** * When true, bypasses server-side lock during wallet creation. * @type {boolean} * @memberof CreateWaasAccountRequest */ skipLock?: boolean; /** * Address derivation type for the new account * @type {string} * @memberof CreateWaasAccountRequest */ addressType?: string; } export declare function CreateWaasAccountRequestFromJSON(json: any): CreateWaasAccountRequest; export declare function CreateWaasAccountRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateWaasAccountRequest; export declare function CreateWaasAccountRequestToJSON(value?: CreateWaasAccountRequest | null): any;