class Greeve::Character::ContractBids

Bids that have been placed on the character's auctions.

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

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/contract_bids.rb, line 20
def initialize(character_id, opts = {})
  opts[:query_params] = { "characterID" => character_id }
  super(opts)
end