/** * Netsparker 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. */ /** * Represents a oauth2 response model. */ export declare 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; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }