/** * 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 { NameServiceData } from './NameServiceData'; /** * * @export * @interface JwtPayloadDeprecatedInfo */ export interface JwtPayloadDeprecatedInfo { /** * User-defined alias or display name * @type {string} * @memberof JwtPayloadDeprecatedInfo */ alias?: string; /** * * @type {ChainEnum} * @memberof JwtPayloadDeprecatedInfo */ chain?: ChainEnum; /** * Email address of the user * @type {string} * @memberof JwtPayloadDeprecatedInfo */ email?: string; /** * * @type {NameServiceData} * @memberof JwtPayloadDeprecatedInfo */ ens?: NameServiceData; /** * * @type {string} * @memberof JwtPayloadDeprecatedInfo */ environmentId: string; /** * First name of the user * @type {string} * @memberof JwtPayloadDeprecatedInfo */ firstName?: string; /** * Job title of the user * @type {string} * @memberof JwtPayloadDeprecatedInfo */ jobTitle?: string; /** * Last name of the user * @type {string} * @memberof JwtPayloadDeprecatedInfo */ lastName?: string; /** * Access lists the user belongs to * @type {Array} * @memberof JwtPayloadDeprecatedInfo */ lists?: Array; /** * Phone number of the user * @type {string} * @memberof JwtPayloadDeprecatedInfo */ phoneNumber?: string; /** * T-shirt size preference of the user * @type {string} * @memberof JwtPayloadDeprecatedInfo */ tShirtSize?: string; /** * * @type {string} * @memberof JwtPayloadDeprecatedInfo */ userId?: string; /** * Username of the user * @type {string} * @memberof JwtPayloadDeprecatedInfo */ username?: string; /** * Primary wallet address of the user * @type {string} * @memberof JwtPayloadDeprecatedInfo */ wallet?: string; /** * * @type {string} * @memberof JwtPayloadDeprecatedInfo */ walletPublicKey?: string; } export declare function JwtPayloadDeprecatedInfoFromJSON(json: any): JwtPayloadDeprecatedInfo; export declare function JwtPayloadDeprecatedInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): JwtPayloadDeprecatedInfo; export declare function JwtPayloadDeprecatedInfoToJSON(value?: JwtPayloadDeprecatedInfo | null): any;