class AuthorizeNet::API::CustomerAddressExType

{AnetApi/xml/v1/schema/AnetApiSchema.xsd}customerAddressExType

firstName - SOAP::SOAPString
lastName - SOAP::SOAPString
company - SOAP::SOAPString
address - SOAP::SOAPString
city - SOAP::SOAPString
state - SOAP::SOAPString
zip - SOAP::SOAPString
country - SOAP::SOAPString
phoneNumber - SOAP::SOAPString
faxNumber - SOAP::SOAPString
email - SOAP::SOAPString
customerAddressId - (any)

Public Class Methods

new(firstName = nil, lastName = nil, company = nil, address = nil, city = nil, state = nil, zip = nil, country = nil, phoneNumber = nil, faxNumber = nil, email = nil, customerAddressId = nil) click to toggle source
# File lib/authorize_net/api/schema.rb, line 198
def initialize(firstName = nil, lastName = nil, company = nil, address = nil, city = nil, state = nil, zip = nil, country = nil, phoneNumber = nil, faxNumber = nil, email = nil, customerAddressId = nil)
    @firstName = firstName
    @lastName = lastName
    @company = company
    @address = address
    @city = city
    @state = state
    @zip = zip
    @country = country
    @phoneNumber = phoneNumber
    @faxNumber = faxNumber
    @email = email
    @customerAddressId = customerAddressId
  end