Class: AuthorizeNet::API::CustomerProfileType
- Inherits:
-
Object
- Object
- AuthorizeNet::API::CustomerProfileType
- 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
-
#initialize(merchantCustomerId = nil, description = nil, email = nil, paymentProfiles = [], shipToList = [], profileType = nil) ⇒ CustomerProfileType
constructor
A new instance of CustomerProfileType.
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 |