/** * 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'; /** * The health check model for user */ export class UserHealthCheckApiModel { /** * Gets or sets user\'s date format */ 'dateFormat'?: string; /** * Gets or sets user display name */ 'displayName'?: string; /** * Gets or sets Email */ 'email'?: string; /** * Gets or sets Alternate Email */ 'alternateLoginEmail'?: string; /** * Gets or sets user\'s time info */ 'timeZoneInfo'?: string; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "dateFormat", "baseName": "DateFormat", "type": "string" }, { "name": "displayName", "baseName": "DisplayName", "type": "string" }, { "name": "email", "baseName": "Email", "type": "string" }, { "name": "alternateLoginEmail", "baseName": "AlternateLoginEmail", "type": "string" }, { "name": "timeZoneInfo", "baseName": "TimeZoneInfo", "type": "string" } ]; static getAttributeTypeMap() { return UserHealthCheckApiModel.attributeTypeMap; } }