Address

Description

This object contains all address information, including first name, last name, and address.

Properties

TypeNameDescription
stringFirstNameFirst name. (required)
stringLastNameLast name. (required)
stringCompanyNameCompany or organization name. (optional)
stringAddress1Street address line 1. (required)
stringAddress2Street address line 2.
stringCityCity. (required)
stringStateState or province. (required)
stringZipCodeZip or postal code. (required)
stringCountryISO-3166-1: Alpha-2 Codes
For example:
US United Stated
CA Canada

https://en.wikipedia.org/wiki/List_of_ISO_3166_country_codes

Examples

EBizSOAP.Address address = new EBizSOAP.Address();
address.Address1 = "20 Pacifica";
address.Address2 = "Suite 1450";
address.City = "Irvine";
address.ZipCode = "92618";
address.State = "California";