Class: AuthorizeNet::API::LineItemType
- Inherits:
-
Object
- Object
- AuthorizeNet::API::LineItemType
- Includes:
- ROXML
- Defined in:
- lib/authorize_net/api/schema.rb
Overview
AnetApi/xml/v1/schema/AnetApiSchema.xsdlineItemType itemId - SOAP::SOAPString name - SOAP::SOAPString description - SOAP::SOAPString quantity - SOAP::SOAPDecimal unitPrice - SOAP::SOAPDecimal taxable - SOAP::SOAPBoolean
Instance Method Summary collapse
-
#initialize(itemId = nil, name = nil, description = nil, quantity = nil, unitPrice = nil, taxable = nil) ⇒ LineItemType
constructor
A new instance of LineItemType.
Constructor Details
#initialize(itemId = nil, name = nil, description = nil, quantity = nil, unitPrice = nil, taxable = nil) ⇒ LineItemType
Returns a new instance of LineItemType.
1172 1173 1174 1175 1176 1177 1178 1179 |
# File 'lib/authorize_net/api/schema.rb', line 1172 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 |