/** * 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 { JwtVerifiedCredential } from './JwtVerifiedCredential'; /** * * @export * @interface UserSessionAndCredentialsAllOf */ export interface UserSessionAndCredentialsAllOf { /** * All verified credentials (wallets, emails, phone numbers, social * accounts) linked to the user at the time the session was created. * @type {Array} * @memberof UserSessionAndCredentialsAllOf */ verifiedCredentials: Array; } export declare function UserSessionAndCredentialsAllOfFromJSON(json: any): UserSessionAndCredentialsAllOf; export declare function UserSessionAndCredentialsAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserSessionAndCredentialsAllOf; export declare function UserSessionAndCredentialsAllOfToJSON(value?: UserSessionAndCredentialsAllOf | null): any;