Sha256: 55f868e2abf6c2e2b48f23c56f0145697ea04aa6522b20d70b511125f45062e5
Contents?: true
Size: 1.03 KB
Versions: 2
Compression:
Stored size: 1.03 KB
Contents
# frozen_string_literal: true module EveOnline module ESI module Models class Asset < Base def as_json { is_blueprint_copy: is_blueprint_copy, is_singleton: is_singleton, item_id: item_id, location_flag: location_flag, location_id: location_id, location_type: location_type, quantity: quantity, type_id: type_id, } end def is_blueprint_copy options["is_blueprint_copy"] end def is_singleton options["is_singleton"] end def item_id options["item_id"] end def location_flag options["location_flag"] end def location_id options["location_id"] end def location_type options["location_type"] end def quantity options["quantity"] end def type_id options["type_id"] end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
eve_online-0.31.0 | lib/eve_online/esi/models/asset.rb |
eve_online-0.30.0 | lib/eve_online/esi/models/asset.rb |