/** * 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 { PasswordSourceTypeEnum } from './PasswordSourceTypeEnum'; /** * * @export * @interface CoinbaseMpcWalletProperties */ export interface CoinbaseMpcWalletProperties { /** * Dynamic pregenerated this wallet and stored the passcode * @type {boolean} * @memberof CoinbaseMpcWalletProperties */ claimed?: boolean; /** * * @type {PasswordSourceTypeEnum} * @memberof CoinbaseMpcWalletProperties */ source?: PasswordSourceTypeEnum; } export declare function CoinbaseMpcWalletPropertiesFromJSON(json: any): CoinbaseMpcWalletProperties; export declare function CoinbaseMpcWalletPropertiesFromJSONTyped(json: any, ignoreDiscriminator: boolean): CoinbaseMpcWalletProperties; export declare function CoinbaseMpcWalletPropertiesToJSON(value?: CoinbaseMpcWalletProperties | null): any;