Class: AuthorizeNet::API::ProfileTransOrderType
- Inherits:
-
Object
- Object
- AuthorizeNet::API::ProfileTransOrderType
- Includes:
- ROXML
- Defined in:
- lib/authorize_net/api/schema.rb
Overview
AnetApi/xml/v1/schema/AnetApiSchema.xsdprofileTransOrderType
amount - SOAP::SOAPDecimal
tax - ExtendedAmountType
shipping - ExtendedAmountType
duty - ExtendedAmountType
lineItems - LineItemType
customerProfileId - (any)
customerPaymentProfileId - (any)
customerShippingAddressId - (any)
order - OrderExType
taxExempt - SOAP::SOAPBoolean
recurringBilling - SOAP::SOAPBoolean
cardCode - (any)
splitTenderId - (any)
Instance Method Summary collapse
-
#initialize(amount = nil, tax = nil, shipping = nil, duty = nil, lineItems = [], customerProfileId = nil, customerPaymentProfileId = nil, customerShippingAddressId = nil, order = nil, taxExempt = nil, recurringBilling = nil, cardCode = nil, splitTenderId = nil) ⇒ ProfileTransOrderType
constructor
A new instance of ProfileTransOrderType.
Constructor Details
#initialize(amount = nil, tax = nil, shipping = nil, duty = nil, lineItems = [], customerProfileId = nil, customerPaymentProfileId = nil, customerShippingAddressId = nil, order = nil, taxExempt = nil, recurringBilling = nil, cardCode = nil, splitTenderId = nil) ⇒ ProfileTransOrderType
Returns a new instance of ProfileTransOrderType.
1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 |
# File 'lib/authorize_net/api/schema.rb', line 1354 def initialize(amount = nil, tax = nil, shipping = nil, duty = nil, lineItems = [], customerProfileId = nil, customerPaymentProfileId = nil, customerShippingAddressId = nil, order = nil, taxExempt = nil, recurringBilling = nil, cardCode = nil, splitTenderId = nil) @amount = amount @tax = tax @shipping = shipping @duty = duty @lineItems = lineItems @customerProfileId = customerProfileId @customerPaymentProfileId = customerPaymentProfileId @customerShippingAddressId = customerShippingAddressId @order = order @taxExempt = taxExempt @recurringBilling = recurringBilling @cardCode = cardCode @splitTenderId = splitTenderId end |