Class: Greeve::Character::PlanetaryPins
- Defined in:
- lib/greeve/character/planetary_pins.rb
Overview
Note:
Planetary pins for colonies owned by character.
Attributes collapse
Instance Method Summary collapse
-
#initialize(character_id, planet_id, opts = {}) ⇒ PlanetaryPins
constructor
A new instance of PlanetaryPins.
Methods inherited from BaseItem
attribute, #cache_expired?, #cached_until, endpoint, #inspect, namespace, #refresh, rowset, #to_s
Methods included from Helpers::AttributeToHash
Constructor Details
#initialize(character_id, planet_id, opts = {}) ⇒ PlanetaryPins
Returns a new instance of PlanetaryPins
31 32 33 34 35 36 37 38 |
# File 'lib/greeve/character/planetary_pins.rb', line 31 def initialize(character_id, planet_id, opts = {}) opts[:query_params] = { "characterID" => character_id, "planetID" => planet_id, } super(opts) end |
Instance Method Details
#pins ⇒ Greeve::Rowset
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
# File 'lib/greeve/character/planetary_pins.rb', line 11 rowset :pins, xpath: "eveapi/result/rowset[@name='pins']" do attribute :pin_id, xpath: "@pinID", type: :integer attribute :type_id, xpath: "@typeID", type: :integer attribute :type_name, xpath: "@typeName", type: :string attribute :schematic_id, xpath: "@schematicID", type: :integer attribute :last_launch_time, xpath: "@lastLaunchTime", type: :datetime attribute :cycle_time, xpath: "@cycleTime", type: :integer attribute :quantity_per_cycle, xpath: "@quantityPerCycle", type: :integer attribute :install_time, xpath: "@installTime", type: :datetime attribute :expiry_time, xpath: "@expiryTime", type: :datetime attribute :content_type_id, xpath: "@contentTypeID", type: :integer attribute :content_type_name, xpath: "@contentTypeName", type: :string attribute :content_quantity, xpath: "@contentQuantity", type: :integer attribute :longitude, xpath: "@longitude", type: :numeric attribute :latitude, xpath: "@latitude", type: :numeric end |