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.



715
716
717
718
719
720
721
722
723
# File 'lib/authorize_net/api/schema.rb', line 715

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