class Greeve::Character::PlanetaryPins

Planetary pins for colonies owned by character.

@see eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_planetarypins.html

Public Class Methods

new(character_id, planet_id, opts = {}) click to toggle source

@param character_id [Integer] EVE character ID @param planet_id [Integer] planet ID. Can be obtained from

{Character::PlanetaryColonies}
Calls superclass method Greeve::BaseItem::new
# 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