class EveOnline::ESI::Models::Blueprint

Public Instance Methods

as_json() click to toggle source
# File lib/eve_online/esi/models/blueprint.rb, line 7
def as_json
  {
    item_id: item_id,
    location_flag: location_flag,
    location_id: location_id,
    material_efficiency: material_efficiency,
    quantity: quantity,
    runs: runs,
    time_efficiency: time_efficiency,
    type_id: type_id
  }
end
item_id() click to toggle source
# File lib/eve_online/esi/models/blueprint.rb, line 20
def item_id
  options["item_id"]
end
location_flag() click to toggle source
# File lib/eve_online/esi/models/blueprint.rb, line 24
def location_flag
  options["location_flag"]
end
location_id() click to toggle source
# File lib/eve_online/esi/models/blueprint.rb, line 28
def location_id
  options["location_id"]
end
material_efficiency() click to toggle source
# File lib/eve_online/esi/models/blueprint.rb, line 32
def material_efficiency
  options["material_efficiency"]
end
quantity() click to toggle source
# File lib/eve_online/esi/models/blueprint.rb, line 36
def quantity
  options["quantity"]
end
runs() click to toggle source
# File lib/eve_online/esi/models/blueprint.rb, line 40
def runs
  options["runs"]
end
time_efficiency() click to toggle source
# File lib/eve_online/esi/models/blueprint.rb, line 44
def time_efficiency
  options["time_efficiency"]
end
type_id() click to toggle source
# File lib/eve_online/esi/models/blueprint.rb, line 48
def type_id
  options["type_id"]
end