// Generated Source interface BusinessAddressInfo { /** * Name of a country */ country?: string; /** * Name of a state/province */ state?: string; /** * Name of a city */ city?: string; /** * Street address */ street?: string; /** * Zip code */ zip?: string; } export default BusinessAddressInfo;