Sha256: bad8bdf8507bb2da1aedf2cd0196b62c5597e1abbb1ee854afe60b47c2233c05
Contents?: true
Size: 652 Bytes
Versions: 3
Compression:
Stored size: 652 Bytes
Contents
module EveOnline module Characters # https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_notifications.html class Notifications < BaseXML API_ENDPOINT = 'https://api.eveonline.com/char/Notifications.xml.aspx'.freeze ACCESS_MASK = 16_384 attr_reader :key_id, :v_code, :character_id def initialize(key_id, v_code, character_id) super() @key_id = key_id @v_code = v_code @character_id = character_id end def url "#{ API_ENDPOINT }?keyID=#{ key_id }&vCode=#{ v_code }&characterID=#{ character_id }" end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
eve_online-0.11.0 | lib/eve_online/characters/notifications.rb |
eve_online-0.10.0 | lib/eve_online/characters/notifications.rb |
eve_online-0.9.0 | lib/eve_online/characters/notifications.rb |