class AuthorizeNet::API::ProfileTransRefundType

{AnetApi/xml/v1/schema/AnetApiSchema.xsd}profileTransRefundType

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)

Public Class Methods

new(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) click to toggle source
# File lib/authorize_net/api/schema.rb, line 1583
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