Class: AuthorizeNet::API::SubMerchantType
- Inherits:
-
Object
- Object
- AuthorizeNet::API::SubMerchantType
- Includes:
- ROXML
- Defined in:
- lib/authorize_net/api/schema.rb
Overview
identifier - SOAP::SOAPString
doingBusinessAs - SOAP::SOAPString
paymentServiceProviderName - SOAP::SOAPString
paymentServiceFacilitator - SOAP::SOAPString
streetAddress - SOAP::SOAPString
Instance Method Summary collapse
-
#initialize(identifier = nil, doingBusinessAs = nil, paymentServiceProviderName = nil, paymentServiceFacilitator = nil, streetAddress = nil, phone = nil, email = nil, postalCode = nil, city = nil, regionCode = nil, countryCode = nil) ⇒ SubMerchantType
constructor
A new instance of SubMerchantType.
Constructor Details
#initialize(identifier = nil, doingBusinessAs = nil, paymentServiceProviderName = nil, paymentServiceFacilitator = nil, streetAddress = nil, phone = nil, email = nil, postalCode = nil, city = nil, regionCode = nil, countryCode = nil) ⇒ SubMerchantType
Returns a new instance of SubMerchantType.
1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 |
# File 'lib/authorize_net/api/schema.rb', line 1020 def initialize(identifier = nil, doingBusinessAs = nil, paymentServiceProviderName = nil, paymentServiceFacilitator = nil, streetAddress = nil, phone = nil, email = nil, postalCode = nil, city = nil, regionCode = nil, countryCode = nil ) @identifier = identifier @doingBusinessAs = doingBusinessAs @paymentServiceProviderName = paymentServiceProviderName @paymentServiceFacilitator = paymentServiceFacilitator @streetAddress = streetAddress @phone = phone @email = email @postalCode = postalCode @city = city @regionCode = regionCode @countryCode = countryCode end |