Sha256: e9d5ebf43e27af62e3f478c66b982225483665e91435e58f03a163fa4172afc4

Contents?: true

Size: 676 Bytes

Versions: 1

Compression:

Stored size: 676 Bytes

Contents

module EveOnline
  module ESI
    module Models
      class JumpClone < Base
        def as_json
          {
            jump_clone_id: jump_clone_id,
            name: name,
            location_id: location_id,
            location_type: location_type,
            implants: implants
          }
        end

        def jump_clone_id
          options['jump_clone_id']
        end

        def name
          options['name']
        end

        def location_id
          options['location_id']
        end

        def location_type
          options['location_type']
        end

        def implants
          options['implants']
        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/jump_clone.rb