/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * SCIM name object serializer. * Fields allow_blank=True so response validation succeeds for users with no name set. */ export type SCIMName = { /** * Full formatted name */ formatted?: string; /** * Family/last name */ familyName?: string; /** * Given/first name */ givenName?: string; };