// Generated Source interface AddressInfo { /** * User street address */ streetAddress?: string; /** * User city */ locality?: string; /** * User state/region */ region?: string; /** * User postal code */ postalCode?: string; /** * User country */ country?: string; /** * Address type */ type?: "work"; } export default AddressInfo;