class AuthorizeNet::API::CustomerPaymentProfileExType

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

customerType - CustomerTypeEnum
billTo - CustomerAddressType
payment - PaymentType
driversLicense - DriversLicenseType
taxId - SOAP::SOAPString
customerPaymentProfileId - (any)

Public Class Methods

new(customerType = nil, billTo = nil, payment = nil, driversLicense = nil, taxId = nil, customerPaymentProfileId = nil) click to toggle source
# File lib/authorize_net/api/schema.rb, line 1304
def initialize(customerType = nil, billTo = nil, payment = nil, driversLicense = nil, taxId = nil, customerPaymentProfileId = nil)
  @customerType = customerType
  @billTo = billTo
  @payment = payment
  @driversLicense = driversLicense
  @taxId = taxId
  @customerPaymentProfileId = customerPaymentProfileId
end