/** * Audius API * * The version of the OpenAPI document: 1.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 type { ProfilePicture } from './ProfilePicture'; /** * * @export * @interface DecodedUserToken */ export interface DecodedUserToken { /** * * @type {string} * @memberof DecodedUserToken */ apiKey: string; /** * * @type {string} * @memberof DecodedUserToken */ userId: string; /** * * @type {string} * @memberof DecodedUserToken */ email: string; /** * * @type {string} * @memberof DecodedUserToken */ name: string; /** * * @type {string} * @memberof DecodedUserToken */ handle: string; /** * * @type {boolean} * @memberof DecodedUserToken */ verified: boolean; /** * * @type {ProfilePicture} * @memberof DecodedUserToken */ profilePicture?: ProfilePicture; /** * * @type {string} * @memberof DecodedUserToken */ sub: string; /** * * @type {string} * @memberof DecodedUserToken */ iat: string; } /** * Check if a given object implements the DecodedUserToken interface. */ export declare function instanceOfDecodedUserToken(value: object): value is DecodedUserToken; export declare function DecodedUserTokenFromJSON(json: any): DecodedUserToken; export declare function DecodedUserTokenFromJSONTyped(json: any, ignoreDiscriminator: boolean): DecodedUserToken; export declare function DecodedUserTokenToJSON(value?: DecodedUserToken | null): any;