Class: Greeve::Character::PlanetaryPins

Inherits:
BaseItem
  • Object
show all
Defined in:
lib/greeve/character/planetary_pins.rb

Overview

Planetary pins for colonies owned by character.

Instance Method Summary collapse

Methods inherited from BaseItem

attribute, #cache_expired?, #cached_until, endpoint, #inspect, namespace, #refresh, rowset, #to_s

Methods included from Helpers::AttributeToHash

#to_h

Constructor Details

#initialize(character_id, planet_id, opts = {}) ⇒ PlanetaryPins

Returns a new instance of PlanetaryPins.

Parameters:



31
32
33
34
35
36
37
38
# File 'lib/greeve/character/planetary_pins.rb', line 31

def initialize(character_id, planet_id, opts = {})
  opts[:query_params] = {
    "characterID" => character_id,
    "planetID" => planet_id,
  }

  super(opts)
end