class AuthorizeNet::API::NameAndAddressType

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

firstName - SOAP::SOAPString
lastName - SOAP::SOAPString
company - SOAP::SOAPString
address - SOAP::SOAPString
city - SOAP::SOAPString
state - SOAP::SOAPString
zip - SOAP::SOAPString
country - SOAP::SOAPString

Public Class Methods

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