/** * SCIM address object serializer */ export type SCIMAddress = { /** * Address type (work, home, etc.) */ type: string; /** * Full formatted address */ formatted: string; /** * Street address */ streetAddress: string; /** * City */ locality: string; /** * State/region */ region: string; /** * Postal code */ postalCode: string; /** * Country */ country: string; };