class AgridClient::Item
Attributes
basic[RW]
Inform if item is included on price
id[RW]
Unique Id
note[RW]
Description of Item
price[RW]
Inform the value of an extra item(not included on quote)
title[RW]
Item
title
Public Class Methods
attribute_map()
click to toggle source
Attribute mapping from ruby-style variable name to JSON key.
# File lib/agrid_client/models/item.rb, line 36 def self.attribute_map { :'id' => :'id', :'title' => :'title', :'basic' => :'basic', :'price' => :'price', :'note' => :'note' } end
new(attributes = {})
click to toggle source
Initializes the object @param [Hash] attributes Model attributes in the form of hash
# File lib/agrid_client/models/item.rb, line 59 def initialize(attributes = {}) return unless attributes.is_a?(Hash) # convert string to symbol for hash key attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v} if attributes[:'id'] self.id = attributes[:'id'] end if attributes[:'title'] self.title = attributes[:'title'] end if attributes[:'basic'] self.basic = attributes[:'basic'] end if attributes[:'price'] self.price = attributes[:'price'] end if attributes[:'note'] self.note = attributes[:'note'] end end
swagger_types()
click to toggle source
Attribute type mapping.
# File lib/agrid_client/models/item.rb, line 47 def self.swagger_types { :'id' => :'String', :'title' => :'String', :'basic' => :'BOOLEAN', :'price' => :'Float', :'note' => :'String' } end
Public Instance Methods
==(o)
click to toggle source
Checks equality by comparing each attribute. @param [Object] Object to be compared
# File lib/agrid_client/models/item.rb, line 84 def ==(o) return true if self.equal?(o) self.class == o.class && id == o.id end