/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { SCIMEmail } from './SCIMEmail'; import type { SCIMEnterpriseUser } from './SCIMEnterpriseUser'; import type { SCIMMeta } from './SCIMMeta'; import type { SCIMName } from './SCIMName'; /** * SCIM user response serializer */ export type SCIMUserResponse = { /** * SCIM schema identifiers */ schemas: Array; /** * User ID */ id: string; /** * Username */ userName: string; /** * User's name information */ name: SCIMName; /** * User's email addresses */ emails: Array; /** * Whether the user is active */ active: boolean; /** * Enterprise user extension data */ urn_ietf_params_scim_schemas_extension_enterprise_2_0_User: SCIMEnterpriseUser; /** * Resource metadata */ meta?: SCIMMeta; };