/** * 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 { WaasWalletSettings } from './WaasWalletSettings'; /** * * @export * @interface UpdateWaasWalletSettingsResponse */ export interface UpdateWaasWalletSettingsResponse { /** * * @type {string} * @memberof UpdateWaasWalletSettingsResponse */ walletId: string; /** * * @type {WaasWalletSettings} * @memberof UpdateWaasWalletSettingsResponse */ settings: WaasWalletSettings; } export declare function UpdateWaasWalletSettingsResponseFromJSON(json: any): UpdateWaasWalletSettingsResponse; export declare function UpdateWaasWalletSettingsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateWaasWalletSettingsResponse; export declare function UpdateWaasWalletSettingsResponseToJSON(value?: UpdateWaasWalletSettingsResponse | null): any;