class EveOnline::ESI::Models::Search

Public Instance Methods

agent_ids() click to toggle source
# File lib/eve_online/esi/models/search.rb, line 22
def agent_ids
  options.fetch("agent", [])
end
alliance_ids() click to toggle source
# File lib/eve_online/esi/models/search.rb, line 26
def alliance_ids
  options.fetch("alliance", [])
end
as_json() click to toggle source
# File lib/eve_online/esi/models/search.rb, line 7
def as_json
  {
    agent_ids: agent_ids,
    alliance_ids: alliance_ids,
    character_ids: character_ids,
    constellation_ids: constellation_ids,
    corporation_ids: corporation_ids,
    faction_ids: faction_ids,
    inventory_type_ids: inventory_type_ids,
    region_ids: region_ids,
    solar_system_ids: solar_system_ids,
    station_ids: station_ids
  }
end
character_ids() click to toggle source
# File lib/eve_online/esi/models/search.rb, line 30
def character_ids
  options.fetch("character", [])
end
constellation_ids() click to toggle source
# File lib/eve_online/esi/models/search.rb, line 34
def constellation_ids
  options.fetch("constellation", [])
end
corporation_ids() click to toggle source
# File lib/eve_online/esi/models/search.rb, line 38
def corporation_ids
  options.fetch("corporation", [])
end
faction_ids() click to toggle source
# File lib/eve_online/esi/models/search.rb, line 42
def faction_ids
  options.fetch("faction", [])
end
inventory_type_ids() click to toggle source
# File lib/eve_online/esi/models/search.rb, line 46
def inventory_type_ids
  options.fetch("inventory_type", [])
end
region_ids() click to toggle source
# File lib/eve_online/esi/models/search.rb, line 50
def region_ids
  options.fetch("region", [])
end
solar_system_ids() click to toggle source
# File lib/eve_online/esi/models/search.rb, line 54
def solar_system_ids
  options.fetch("solar_system", [])
end
station_ids() click to toggle source
# File lib/eve_online/esi/models/search.rb, line 58
def station_ids
  options.fetch("stations", [])
end