/** * Invicti Enterprise API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { RequestFile } from './models'; /** * Represents a oauth2 response model. */ export class ResponseFields { /** * . Gets or sets the access token */ 'accessToken'?: string; /** * Gets or sets the refresh token. */ 'refreshToken'?: string; /** * Gets or sets the expire. */ 'expire'?: string; /** * Gets or sets the token type. */ 'tokenType'?: string; /** * Gets or sets if the token type is fixed. */ 'isTokenTypeFixed'?: boolean; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "accessToken", "baseName": "AccessToken", "type": "string" }, { "name": "refreshToken", "baseName": "RefreshToken", "type": "string" }, { "name": "expire", "baseName": "Expire", "type": "string" }, { "name": "tokenType", "baseName": "TokenType", "type": "string" }, { "name": "isTokenTypeFixed", "baseName": "IsTokenTypeFixed", "type": "boolean" } ]; static getAttributeTypeMap() { return ResponseFields.attributeTypeMap; } }