Class: AuthorizeNet::API::CustomerAddressExType
- Inherits:
-
Object
- Object
- AuthorizeNet::API::CustomerAddressExType
- Includes:
- ROXML
- Defined in:
- lib/authorize_net/api/schema.rb
Overview
AnetApi/xml/v1/schema/AnetApiSchema.xsdcustomerAddressExType
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)
Instance Method Summary collapse
-
#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) ⇒ CustomerAddressExType
constructor
A new instance of CustomerAddressExType.
Constructor Details
#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) ⇒ CustomerAddressExType
Returns a new instance of CustomerAddressExType.
197 198 199 200 201 202 203 204 205 206 207 208 209 210 |
# File 'lib/authorize_net/api/schema.rb', line 197 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 |