Values.AddressSourceInformation about an address.
type nonrec t = {contactName : ContactName.t;The name of the contact.
*)contactPhoneNumber : ContactPhoneNumber.t;The phone number of the contact.
*)addressLine1 : AddressLine1.t;The first line of the address.
*)addressLine2 : AddressLine2.t option;The second line of the address.
*)addressLine3 : AddressLine3.t option;The third line of the address.
*)city : City.t;The city for the address.
*)stateOrRegion : StateOrRegion.t;The state for the address.
*)districtOrCounty : DistrictOrCounty.t option;The district or county for the address.
*)postalCode : PostalCode.t;The postal code for the address.
*)countryCode : CountryCode.t;The ISO-3166 two-letter country code for the address.
*)municipality : Municipality.t option;The municipality for the address.
*)}val make :
?addressLine2:??? ->
?addressLine3:??? ->
?districtOrCounty:??? ->
?municipality:??? ->
contactName:ContactName.t ->
contactPhoneNumber:ContactPhoneNumber.t ->
addressLine1:AddressLine1.t ->
city:City.t ->
stateOrRegion:StateOrRegion.t ->
postalCode:PostalCode.t ->
countryCode:CountryCode.t ->
unit ->
t