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.
1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 |
# File 'lib/authorize_net/api/schema.rb', line 1889 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 |