/** * 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; };