Sha256: 2d4192cd00659c9399e926578e3fc201d1a401e5af091e7edbab6c427888da48
Contents?: true
Size: 812 Bytes
Versions: 3
Compression:
Stored size: 812 Bytes
Contents
require 'uri' module EveOnline module Characters # https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_notificationtexts.html class NotificationTexts < BaseXML API_ENDPOINT = 'https://api.eveonline.com/char/NotificationTexts.xml.aspx'.freeze ACCESS_MASK = 32_768 attr_reader :key_id, :v_code, :character_id, :ids def initialize(key_id, v_code, character_id, ids) super() @key_id = key_id @v_code = v_code @character_id = character_id @ids = ids end def url "#{ API_ENDPOINT }?keyID=#{ key_id }&vCode=#{ v_code }&characterID=#{ character_id }&IDs=#{ escaped_ids }" end private def escaped_ids URI.escape(ids.join(',')) end end end end
Version data entries
3 entries across 3 versions & 1 rubygems