/* tslint:disable */ /* eslint-disable */ /** * clients * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Represents portal settings for an individual client. */ export interface PortalSettings { /** * The encoded key of the entity, generated, globally unique */ encodedKey?: string; /** * The last date the client logged in to the portal. */ lastLoggedInDate?: string; /** * The state of the client portal for a client */ portalState?: PortalSettingsPortalStateEnum; } export const PortalSettingsPortalStateEnum = { Enabled: 'ENABLED', Disabled: 'DISABLED', } as const; export type PortalSettingsPortalStateEnum = (typeof PortalSettingsPortalStateEnum)[keyof typeof PortalSettingsPortalStateEnum];