Sha256: 044f8a3a57125bc1b89f555aaf071173b0e1e8f192231786d8878efe91b0e735
Contents?: true
Size: 888 Bytes
Versions: 1
Compression:
Stored size: 888 Bytes
Contents
module EveOnline module ESI module Models class Asset < Base def as_json { type_id: type_id, quantity: quantity, location_id: location_id, location_type: location_type, item_id: item_id, location_flag: location_flag, is_singleton: is_singleton } end def type_id options['type_id'] end def quantity options['quantity'] end def location_id options['location_id'] end def location_type options['location_type'] end def item_id options['item_id'] end def location_flag options['location_flag'] end def is_singleton options['is_singleton'] end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
eve_online-0.14.0 | lib/eve_online/esi/models/asset.rb |