class EveOnline::ESI::Models::Region

Public Instance Methods

as_json() click to toggle source
# File lib/eve_online/esi/models/region.rb, line 7
def as_json
  {
    description: description,
    name: name,
    region_id: region_id
  }
end
constellation_ids() click to toggle source
# File lib/eve_online/esi/models/region.rb, line 27
def constellation_ids
  options["constellations"]
end
description() click to toggle source
# File lib/eve_online/esi/models/region.rb, line 15
def description
  options["description"]
end
name() click to toggle source
# File lib/eve_online/esi/models/region.rb, line 19
def name
  options["name"]
end
region_id() click to toggle source
# File lib/eve_online/esi/models/region.rb, line 23
def region_id
  options["region_id"]
end