Class: AuthorizeNet::API::LineItemType

Inherits:
Object
  • Object
show all
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

Constructor Details

#initialize(itemId = nil, name = nil, description = nil, quantity = nil, unitPrice = nil, taxable = nil) ⇒ LineItemType

Returns a new instance of LineItemType.



1354
1355
1356
1357
1358
1359
1360
1361
# File 'lib/authorize_net/api/schema.rb', line 1354

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