class AuthorizeNet::API::ProfileTransPriorAuthCaptureType

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

amount - SOAP::SOAPDecimal
tax - ExtendedAmountType
shipping - ExtendedAmountType
duty - ExtendedAmountType
lineItems - LineItemType
customerProfileId - (any)
customerPaymentProfileId - (any)
customerShippingAddressId - (any)
transId - (any)

Public Class Methods

new(amount = nil, tax = nil, shipping = nil, duty = nil, lineItems = [], customerProfileId = nil, customerPaymentProfileId = nil, customerShippingAddressId = nil, transId = nil) click to toggle source
# File lib/authorize_net/api/schema.rb, line 1540
def initialize(amount = nil, tax = nil, shipping = nil, duty = nil, lineItems = [], customerProfileId = nil, customerPaymentProfileId = nil, customerShippingAddressId = nil, transId = nil)
  @amount = amount
  @tax = tax
  @shipping = shipping
  @duty = duty
  @lineItems = lineItems
  @customerProfileId = customerProfileId
  @customerPaymentProfileId = customerPaymentProfileId
  @customerShippingAddressId = customerShippingAddressId
  @transId = transId
end