Class: AuthorizeNet::API::CustomerDataType

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

Overview

AnetApi/xml/v1/schema/AnetApiSchema.xsdcustomerDataType

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

Instance Method Summary collapse

Constructor Details

#initialize(type = nil, id = nil, email = nil, driversLicense = nil, taxId = nil) ⇒ CustomerDataType

Returns a new instance of CustomerDataType.



740
741
742
743
744
745
746
# File 'lib/authorize_net/api/schema.rb', line 740

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