Sha256: 7196f8f8abb79fd5ab7fd0a6950fefe6723de9647950ec675875676500ba2fbd
Contents?: true
Size: 707 Bytes
Versions: 7
Compression:
Stored size: 707 Bytes
Contents
# frozen_string_literal: true module EveOnline module ESI module Models class JumpClone < Base def as_json { implants: implants, jump_clone_id: jump_clone_id, location_id: location_id, location_type: location_type, name: name } end def implants 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
7 entries across 7 versions & 1 rubygems