class Greeve::Character::ContractItems

Items and details of a particular contract.

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

Public Class Methods

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

@param character_id [Integer] EVE character ID @param contract_id [Integer] ID of the contract

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

  super(opts)
end