class AuthorizeNet::API::CustomerProfileType

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

merchantCustomerId - SOAP::SOAPString
description - SOAP::SOAPString
email - SOAP::SOAPString
paymentProfiles - CustomerPaymentProfileType
shipToList - CustomerAddressType
profileType - CustomerProfileTypeEnum

Public Class Methods

new(merchantCustomerId = nil, description = nil, email = nil, paymentProfiles = [], shipToList = [], profileType = nil) click to toggle source
# File lib/authorize_net/api/schema.rb, line 1396
def initialize(merchantCustomerId = nil, description = nil, email = nil, paymentProfiles = [], shipToList = [], profileType = nil)
  @merchantCustomerId = merchantCustomerId
  @description = description
  @email = email
  @paymentProfiles = paymentProfiles
  @shipToList = shipToList
  @profileType = profileType
end