class AuthorizeNet::API::CustomerProfileBaseType

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

merchantCustomerId - SOAP::SOAPString
description - SOAP::SOAPString
email - SOAP::SOAPString

Public Class Methods

new(merchantCustomerId = nil, description = nil, email = nil) click to toggle source
# File lib/authorize_net/api/schema.rb, line 1373
def initialize(merchantCustomerId = nil, description = nil, email = nil)
  @merchantCustomerId = merchantCustomerId
  @description = description
  @email = email
end