Sha256: a31cefca89d377f3136a7f3ffe7dd2d5606a54db2162f9460f9747287caa2e65

Contents?: true

Size: 410 Bytes

Versions: 1

Compression:

Stored size: 410 Bytes

Contents

# frozen_string_literal: true

module EveOnline
  module ESI
    module Models
      class StargateDestination < Base
        def as_json
          {
            stargate_id: stargate_id,
            system_id: system_id,
          }
        end

        def stargate_id
          options["stargate_id"]
        end

        def system_id
          options["system_id"]
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
eve_online-0.30.0 lib/eve_online/esi/models/stargate_destination.rb