/** * 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. */ /** * * @export * @interface TurnkeyWalletAccount */ export interface TurnkeyWalletAccount { /** * * @type {string} * @memberof TurnkeyWalletAccount */ curve: string; /** * * @type {string} * @memberof TurnkeyWalletAccount */ pathFormat: string; /** * BIP-44 derivation path for the wallet account * @type {string} * @memberof TurnkeyWalletAccount */ path: string; /** * * @type {string} * @memberof TurnkeyWalletAccount */ addressFormat: string; } export declare function TurnkeyWalletAccountFromJSON(json: any): TurnkeyWalletAccount; export declare function TurnkeyWalletAccountFromJSONTyped(json: any, ignoreDiscriminator: boolean): TurnkeyWalletAccount; export declare function TurnkeyWalletAccountToJSON(value?: TurnkeyWalletAccount | null): any;