class Greeve::Character::PlanetaryLinks
Planetary links for colonies owned by character.
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_links.rb, line 20 def initialize(character_id, planet_id, opts = {}) opts[:query_params] = { "characterID" => character_id, "planetID" => planet_id, } super(opts) end