/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * 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; };