Class: AuthorizeNet::API::ProfileTransAuthCaptureType
- Inherits:
-
Object
- Object
- AuthorizeNet::API::ProfileTransAuthCaptureType
- Includes:
- ROXML
- Defined in:
- lib/authorize_net/api/schema.rb
Overview
AnetApi/xml/v1/schema/AnetApiSchema.xsdprofileTransAuthCaptureType
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) ⇒ ProfileTransAuthCaptureType
constructor
A new instance of ProfileTransAuthCaptureType.
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) ⇒ ProfileTransAuthCaptureType
Returns a new instance of ProfileTransAuthCaptureType.
1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 |
# File 'lib/authorize_net/api/schema.rb', line 1710 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 |