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.
1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 |
# File 'lib/authorize_net/api/schema.rb', line 1037 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 |