Class: AuthorizeNet::API::SubMerchantType
- Inherits:
-
Object
- Object
- AuthorizeNet::API::SubMerchantType
- Includes:
- ROXML
- Defined in:
- lib/authorize_net/api/schema.rb
Overview
AnetApi/xml/v1/schema/AnetApiSchema.xsdsubMerchantType
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.
1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 |
# File 'lib/authorize_net/api/schema.rb', line 1109 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 |