/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * SCIM email object serializer */ export type SCIMEmail = { /** * Email address */ value: string; /** * Whether this is the primary email */ primary?: boolean; /** * Email type (work, home, etc.) */ type?: string; };