Sha256: 8f2ba9bf53ec427cb0221054b53503b2fb202ce95918f653b14a8a89d537bf57
Contents?: true
Size: 646 Bytes
Versions: 2
Compression:
Stored size: 646 Bytes
Contents
module EveOnline module Characters # https://eveonline-third-party-documentation.readthedocs.org/en/latest/xmlapi/character/char_contactnotifications.html class ContactNotifications < BaseXML API_ENDPOINT = 'https://api.eveonline.com/char/ContactNotifications.xml.aspx'.freeze 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
eve_online-0.8.0 | lib/eve_online/characters/contact_notifications.rb |
eve_online-0.7.0 | lib/eve_online/characters/contact_notifications.rb |