Class: AuthorizeNet::API::ProfileTransRefundType
- Inherits:
-
Object
- Object
- AuthorizeNet::API::ProfileTransRefundType
- Includes:
- ROXML
- Defined in:
- lib/authorize_net/api/schema.rb
Overview
AnetApi/xml/v1/schema/AnetApiSchema.xsdprofileTransRefundType amount - SOAP::SOAPDecimal tax - ExtendedAmountType shipping - ExtendedAmountType duty - ExtendedAmountType lineItems - LineItemType customerProfileId - (any) customerPaymentProfileId - (any) customerShippingAddressId - (any) creditCardNumberMasked - SOAP::SOAPString bankRoutingNumberMasked - SOAP::SOAPString bankAccountNumberMasked - SOAP::SOAPString order - OrderExType transId - (any)
Instance Method Summary collapse
-
#initialize(amount = nil, tax = nil, shipping = nil, duty = nil, lineItems = [], customerProfileId = nil, customerPaymentProfileId = nil, customerShippingAddressId = nil, creditCardNumberMasked = nil, bankRoutingNumberMasked = nil, bankAccountNumberMasked = nil, order = nil, transId = nil) ⇒ ProfileTransRefundType
constructor
A new instance of ProfileTransRefundType.
Constructor Details
#initialize(amount = nil, tax = nil, shipping = nil, duty = nil, lineItems = [], customerProfileId = nil, customerPaymentProfileId = nil, customerShippingAddressId = nil, creditCardNumberMasked = nil, bankRoutingNumberMasked = nil, bankAccountNumberMasked = nil, order = nil, transId = nil) ⇒ ProfileTransRefundType
Returns a new instance of ProfileTransRefundType.
1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 |
# File 'lib/authorize_net/api/schema.rb', line 1844 def initialize(amount = nil, tax = nil, shipping = nil, duty = nil, lineItems = [], customerProfileId = nil, customerPaymentProfileId = nil, customerShippingAddressId = nil, creditCardNumberMasked = nil, bankRoutingNumberMasked = nil, bankAccountNumberMasked = nil, order = nil, transId = nil) @amount = amount @tax = tax @shipping = shipping @duty = duty @lineItems = lineItems @customerProfileId = customerProfileId @customerPaymentProfileId = customerPaymentProfileId @customerShippingAddressId = customerShippingAddressId @creditCardNumberMasked = creditCardNumberMasked @bankRoutingNumberMasked = bankRoutingNumberMasked @bankAccountNumberMasked = bankAccountNumberMasked @order = order @transId = transId end |