Class: AuthorizeNet::API::CustomerProfileType

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

Overview

AnetApi/xml/v1/schema/AnetApiSchema.xsdcustomerProfileType merchantCustomerId - SOAP::SOAPString description - SOAP::SOAPString email - SOAP::SOAPString paymentProfiles - CustomerPaymentProfileType shipToList - CustomerAddressType profileType - CustomerProfileTypeEnum

Instance Method Summary collapse

Constructor Details

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

Returns a new instance of CustomerProfileType.



1407
1408
1409
1410
1411
1412
1413
1414
# File 'lib/authorize_net/api/schema.rb', line 1407

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