Address

Description

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

Properties

Type

Name

Description

string

FirstName

First name. (required)

string

LastName

Last name. (required)

string

CompanyName

Company or organization name. (optional)

string

Address1

Street address line 1. (required)

string

Address2

Street address line 2.

string

City

City. (required)

string

State

State or province. (required)

string

ZipCode

Zip or postal code. (required)

string

Country

ISO-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";