/** * 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 { ChainEnum } from './ChainEnum'; import { ChainalysisCheck } from './ChainalysisCheck'; import { MFADevice } from './MFADevice'; import { OAuthAccount } from './OAuthAccount'; import { Session } from './Session'; import { Wallet } from './Wallet'; /** * * @export * @interface UserAllOf */ export interface UserAllOf { /** * * @type {string} * @memberof UserAllOf */ walletPublicKey?: string; /** * * @type {string} * @memberof UserAllOf */ wallet?: string; /** * * @type {ChainEnum} * @memberof UserAllOf */ chain?: ChainEnum; /** * ISO 8601 timestamp of when the user account was created * @type {Date} * @memberof UserAllOf */ createdAt?: Date; /** * ISO 8601 timestamp of when the user account was last updated * @type {Date} * @memberof UserAllOf */ updatedAt?: Date; /** * List of authentication sessions for this user * @type {Array} * @memberof UserAllOf */ sessions?: Array; /** * List of wallets linked to this user * @type {Array} * @memberof UserAllOf */ wallets?: Array; /** * List of Chainalysis compliance checks performed on this user * @type {Array} * @memberof UserAllOf */ chainalysisChecks?: Array; /** * List of OAuth social accounts linked to this user * @type {Array} * @memberof UserAllOf */ oauthAccounts?: Array; /** * List of MFA devices registered by this user * @type {Array} * @memberof UserAllOf */ mfaDevices?: Array; } export declare function UserAllOfFromJSON(json: any): UserAllOf; export declare function UserAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserAllOf; export declare function UserAllOfToJSON(value?: UserAllOf | null): any;