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.



1239
1240
1241
1242
1243
1244
1245
1246
# File 'lib/authorize_net/api/schema.rb', line 1239

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