Sha256: 8ca39cb45106fb04e3acd412b1ada04dc03c681b5f733480af1444e7b944a02d
Contents?: true
Size: 1.03 KB
Versions: 13
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
13 entries across 13 versions & 1 rubygems