Sha256: c02a4a395522486c468ad7ef9b6f050635a8685e26089c6bbf52b47545d589bd
Contents?: true
Size: 724 Bytes
Versions: 1
Compression:
Stored size: 724 Bytes
Contents
module EveOnline module XML # https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_planetarypins.html class CharacterPlanetaryPins < Base API_ENDPOINT = 'https://api.eveonline.com/char/PlanetaryPins.xml.aspx'.freeze ACCESS_MASK = 2 attr_reader :key_id, :v_code, :character_id, :planet_id def initialize(key_id, v_code, character_id, planet_id) super() @key_id = key_id @v_code = v_code @character_id = character_id @planet_id = planet_id end def url "#{ API_ENDPOINT }?keyID=#{ key_id }&vCode=#{ v_code }&characterID=#{ character_id }&planetID=#{ planet_id }" end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
eve_online-0.12.0 | lib/eve_online/xml/character_planetary_pins.rb |