Sha256: 0be0e5e8cc7b7fa0f54f9e4a93ce35735ac5fdaeef5aa75c148c5d7ffb9d3cbd
Contents?: true
Size: 678 Bytes
Versions: 16
Compression:
Stored size: 678 Bytes
Contents
# frozen_string_literal: true module EveOnline module ESI module Models class JumpClone < Base def as_json { jump_clone_id: jump_clone_id, location_id: location_id, location_type: location_type, name: name } end def implant_ids options["implants"] end def jump_clone_id options["jump_clone_id"] end def location_id options["location_id"] end def location_type options["location_type"] end def name options["name"] end end end end end
Version data entries
16 entries across 16 versions & 1 rubygems