class Greeve::Character::Blueprints

Blueprints in a character's inventory.

@see eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_blueprints.html

Constants

BPC

Blueprint copy

BPO

Blueprint original

Public Class Methods

new(character_id, opts = {}) click to toggle source

@param character_id [Integer] EVE character ID

Calls superclass method Greeve::BaseItem::new
# File lib/greeve/character/blueprints.rb, line 29
def initialize(character_id, opts = {})
  opts[:query_params] = { "characterID" => character_id }
  super(opts)
end