GwAddress

Contains customer contact information.

Description

This object contains all customer contact information, including telephone number, fax number, and email address.

Properties

StringFirstNameCustomer's first name. (required)
StringLastNameCustomer's last name. (required)
StringCompanyCompany or organization name. (optional)
StringStreetStreet address line 1. (required)
StringStreet2Street address line 2. (optional)
StringCityCity. (required)
StringStateState or province. (required)
StringZipZip or postal code. (required)
StringCountryCountry. (required)
StringPhoneTelephone number. (optional)
StringFaxFax number. (optional)
StringEmailEmail address. (optional)
eBizCharge.CustomerObject customer = new eBizCharge.CustomerObject();
           eBizCharge.GwAddress address = new eBizCharge.GwAddress();
           address.FirstName = "John";
           address.LastName = "Doe";
           address.Company = "Acme";
           address.Street = "123 main st.";
           address.City = "Hollywood";
           address.State = "ca";
           address.Zip = "91607";
           address.Country = "USA";
           customer.BillingAddress = address;
<BillingAddress xsi:type="ns1:GwAddress">
<City xsi:type="xsd:string">Los Angeles</City>
<Company xsi:type="xsd:string">eBizCharge</Company>
<Country xsi:type="xsd:string">US</Country>
<Email xsi:type="xsd:string">[email protected]</Email>
<Fax xsi:type="xsd:string"></Fax>
<FirstName xsi:type="xsd:string">XML</FirstName>
<LastName xsi:type="xsd:string">Example</LastName>
<Phone xsi:type="xsd:string">1-866-872-3729</Phone>
<State xsi:type="xsd:string">CA</State>
<Street xsi:type="xsd:string">5500 Wilshire Blvd</Street>
<Street2 xsi:type="xsd:string">suite 2700</Street2>
<Zip xsi:type="xsd:string">90036</Zip>
</BillingAddress>