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

Instance Method Summary collapse

Constructor Details

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

Returns a new instance of CustomerProfileType.



1135
1136
1137
1138
1139
1140
1141
# File 'lib/authorize_net/api/schema.rb', line 1135

def initialize(merchantCustomerId = nil, description = nil, email = nil, paymentProfiles = [], shipToList = [])
  @merchantCustomerId = merchantCustomerId
  @description = description
  @email = email
  @paymentProfiles = paymentProfiles
  @shipToList = shipToList
end