Sha256: 84b0287337a4c9740c8e61c71329162f5a993a41e6859bf799583134df6c2718

Contents?: true

Size: 447 Bytes

Versions: 2

Compression:

Stored size: 447 Bytes

Contents

module EveOnline
  module ESI
    module Models
      class Standing < Base
        def as_json
          {
            from_id: from_id,
            from_type: from_type,
            standing: standing
          }
        end

        def from_id
          options['from_id']
        end

        def from_type
          options['from_type']
        end

        def standing
          options['standing']
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
eve_online-0.14.0 lib/eve_online/esi/models/standing.rb
eve_online-0.13.0 lib/eve_online/esi/models/standing.rb