Class: AuthorizeNet::API::ProfileTransCaptureOnlyType
- Inherits:
-
Object
- Object
- AuthorizeNet::API::ProfileTransCaptureOnlyType
- Includes:
- ROXML
- Defined in:
- lib/authorize_net/api/schema.rb
Overview
AnetApi/xml/v1/schema/AnetApiSchema.xsdprofileTransCaptureOnlyType
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)
approvalCode - SOAP::SOAPString
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, approvalCode = nil) ⇒ ProfileTransCaptureOnlyType
constructor
A new instance of ProfileTransCaptureOnlyType.
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, approvalCode = nil) ⇒ ProfileTransCaptureOnlyType
Returns a new instance of ProfileTransCaptureOnlyType.
1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 |
# File 'lib/authorize_net/api/schema.rb', line 1806 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, approvalCode = 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 @approvalCode = approvalCode end |