class AuthorizeNet::API::CustomerDataType

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

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

Public Class Methods

new(type = nil, id = nil, email = nil, driversLicense = nil, taxId = nil) click to toggle source
# File lib/authorize_net/api/schema.rb, line 733
def initialize(type = nil, id = nil, email = nil, driversLicense = nil, taxId = nil)
  @type = type
  @id = id
  @email = email
  @driversLicense = driversLicense
  @taxId = taxId
end