class AuthorizeNet::API::LineItemType
{AnetApi/xml/v1/schema/AnetApiSchema.xsd}lineItemType
itemId - SOAP::SOAPString name - SOAP::SOAPString description - SOAP::SOAPString quantity - SOAP::SOAPDecimal unitPrice - SOAP::SOAPDecimal taxable - SOAP::SOAPBoolean
Public Class Methods
new(itemId = nil, name = nil, description = nil, quantity = nil, unitPrice = nil, taxable = nil)
click to toggle source
# File lib/authorize_net/api/schema.rb, line 1284 def initialize(itemId = nil, name = nil, description = nil, quantity = nil, unitPrice = nil, taxable = nil) @itemId = itemId @name = name @description = description @quantity = quantity @unitPrice = unitPrice @taxable = taxable end