Class: AuthorizeNet::API::TransactionRequestType
- Inherits:
-
Object
- Object
- AuthorizeNet::API::TransactionRequestType
- Includes:
- ROXML
- Defined in:
- lib/authorize_net/api/schema.rb
Overview
transactionType - SOAP::SOAPString
amount - SOAP::SOAPDecimal
currencyCode - SOAP::SOAPString
payment - PaymentType
profile - CustomerProfilePaymentType
solution - SolutionType
authCode - SOAP::SOAPString
refTransId - SOAP::SOAPString
splitTenderId - SOAP::SOAPString
order - OrderType
lineItems - ArrayOfLineItem
tax - ExtendedAmountType
duty - ExtendedAmountType
shipping - ExtendedAmountType
taxExempt - SOAP::SOAPBoolean
poNumber - SOAP::SOAPString
customer - CustomerDataType
billTo - CustomerAddressType
shipTo - NameAndAddressType
customerIP - SOAP::SOAPString
cardholderAuthentication - CcAuthenticationType
retail - TransRetailInfoType
transactionSettings - ArrayOfSetting
userFields - TransactionRequestType::UserFields
Instance Method Summary collapse
-
#initialize(transactionType = nil, amount = nil, currencyCode = nil, payment = nil, profile = nil, solution = nil, authCode = nil, refTransId = nil, splitTenderId = nil, order = nil, lineItems = nil, tax = nil, duty = nil, shipping = nil, taxExempt = nil, poNumber = nil, customer = nil, billTo = nil, shipTo = nil, customerIP = nil, cardholderAuthentication = nil, retail = nil, transactionSettings = nil, userFields = nil) ⇒ TransactionRequestType
constructor
A new instance of TransactionRequestType.
Constructor Details
#initialize(transactionType = nil, amount = nil, currencyCode = nil, payment = nil, profile = nil, solution = nil, authCode = nil, refTransId = nil, splitTenderId = nil, order = nil, lineItems = nil, tax = nil, duty = nil, shipping = nil, taxExempt = nil, poNumber = nil, customer = nil, billTo = nil, shipTo = nil, customerIP = nil, cardholderAuthentication = nil, retail = nil, transactionSettings = nil, userFields = nil) ⇒ TransactionRequestType
Returns a new instance of TransactionRequestType.
3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 |
# File 'lib/authorize_net/api/schema.rb', line 3901 def initialize(transactionType = nil, amount = nil, currencyCode = nil, payment = nil, profile = nil, solution = nil, authCode = nil, refTransId = nil, splitTenderId = nil, order = nil, lineItems = nil, tax = nil, duty = nil, shipping = nil, taxExempt = nil, poNumber = nil, customer = nil, billTo = nil, shipTo = nil, customerIP = nil, cardholderAuthentication = nil, retail = nil, transactionSettings = nil, userFields = nil) @transactionType = transactionType @amount = amount @currencyCode = currencyCode @payment = payment @profile = profile @solution = solution @authCode = authCode @refTransId = refTransId @splitTenderId = splitTenderId @order = order @lineItems = lineItems @tax = tax @duty = duty @shipping = shipping @taxExempt = taxExempt @poNumber = poNumber @customer = customer @billTo = billTo @shipTo = shipTo @customerIP = customerIP @cardholderAuthentication = cardholderAuthentication @retail = retail @transactionSettings = transactionSettings @userFields = userFields end |