Class: AuthorizeNet::API::CustomerType

Inherits:
Object
  • Object
show all
Includes:
ROXML
Defined in:
lib/authorize_net/api/schema.rb

Overview

AnetApi/xml/v1/schema/AnetApiSchema.xsdcustomerType

type - CustomerTypeEnum
id - SOAP::SOAPString
email - SOAP::SOAPString
phoneNumber - SOAP::SOAPString
faxNumber - SOAP::SOAPString
driversLicense - DriversLicenseType
taxId - SOAP::SOAPString

Instance Method Summary collapse

Constructor Details

#initialize(type = nil, id = nil, email = nil, phoneNumber = nil, faxNumber = nil, driversLicense = nil, taxId = nil) ⇒ CustomerType

Returns a new instance of CustomerType.



795
796
797
798
799
800
801
802
803
# File 'lib/authorize_net/api/schema.rb', line 795

def initialize(type = nil, id = nil, email = nil, phoneNumber = nil, faxNumber = nil, driversLicense = nil, taxId = nil)
  @type = type
  @id = id
  @email = email
  @phoneNumber = phoneNumber
  @faxNumber = faxNumber
  @driversLicense = driversLicense
  @taxId = taxId
end