/** * ThoughtSpot Public REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * OpenAPI spec version: 2.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 { Scope } from '../models/Scope'; import { HttpFile } from '../http/http'; export class TokenValidationResponse { /** * Token creation time in milliseconds. */ 'creation_time_in_millis': number; /** * Token expiration time in milliseconds. */ 'expiration_time_in_millis': number; 'scope': Scope; /** * Username to whom the token is issued. */ 'valid_for_user_id': string; /** * Type of token. */ 'token_type': string; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "creation_time_in_millis", "baseName": "creation_time_in_millis", "type": "number", "format": "float" }, { "name": "expiration_time_in_millis", "baseName": "expiration_time_in_millis", "type": "number", "format": "float" }, { "name": "scope", "baseName": "scope", "type": "Scope", "format": "" }, { "name": "valid_for_user_id", "baseName": "valid_for_user_id", "type": "string", "format": "" }, { "name": "token_type", "baseName": "token_type", "type": "string", "format": "" } ]; static getAttributeTypeMap() { return TokenValidationResponse.attributeTypeMap; } public constructor() { } }