Class: AuthorizeNet::API::CustomerProfileMaskedType

Inherits:
Object
  • Object
show all
Includes:
ROXML
Defined in:
lib/authorize_net/api/schema.rb

Overview

AnetApi/xml/v1/schema/AnetApiSchema.xsdcustomerProfileMaskedType

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

Instance Method Summary collapse

Constructor Details

#initialize(merchantCustomerId = nil, description = nil, email = nil, customerProfileId = nil, paymentProfiles = [], shipToList = [], profileType = nil) ⇒ CustomerProfileMaskedType

Returns a new instance of CustomerProfileMaskedType.



1310
1311
1312
1313
1314
1315
1316
1317
1318
# File 'lib/authorize_net/api/schema.rb', line 1310

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