class AuthorizeNet::API::CustomerProfileType

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

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

Public Class Methods

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