class AuthorizeNet::API::CustomerProfileMaskedType

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

merchantCustomerId - SOAP::SOAPString
description - SOAP::SOAPString
email - SOAP::SOAPString
customerProfileId - (any)
paymentProfiles - CustomerPaymentProfileMaskedType
shipToList - CustomerAddressExType
profileType - CustomerProfileTypeEnum

Public Class Methods

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