Class: EveOnline::ESI::Models::CharacterIndustryJob
- Defined in:
- lib/eve_online/esi/models/character_industry_job.rb
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
- #activity_id ⇒ Object
- #as_json ⇒ Object
- #blueprint_id ⇒ Object
- #blueprint_location_id ⇒ Object
- #blueprint_type_id ⇒ Object
- #completed_character_id ⇒ Object
- #completed_date ⇒ Object
- #cost ⇒ Object
- #duration ⇒ Object
- #end_date ⇒ Object
- #facility_id ⇒ Object
- #installer_id ⇒ Object
- #job_id ⇒ Object
- #licensed_runs ⇒ Object
- #output_location_id ⇒ Object
- #pause_date ⇒ Object
- #probability ⇒ Object
- #product_type_id ⇒ Object
- #runs ⇒ Object
- #start_date ⇒ Object
- #station_id ⇒ Object
- #status ⇒ Object
- #successful_runs ⇒ Object
Methods inherited from Base
Constructor Details
This class inherits a constructor from EveOnline::ESI::Models::Base
Instance Method Details
#activity_id ⇒ Object
34 35 36 |
# File 'lib/eve_online/esi/models/character_industry_job.rb', line 34 def activity_id ["activity_id"] end |
#as_json ⇒ Object
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
# File 'lib/eve_online/esi/models/character_industry_job.rb', line 7 def as_json { activity_id: activity_id, blueprint_id: blueprint_id, blueprint_location_id: blueprint_location_id, blueprint_type_id: blueprint_type_id, completed_character_id: completed_character_id, completed_date: completed_date, cost: cost, duration: duration, end_date: end_date, facility_id: facility_id, installer_id: installer_id, job_id: job_id, licensed_runs: licensed_runs, output_location_id: output_location_id, pause_date: pause_date, probability: probability, product_type_id: product_type_id, runs: runs, start_date: start_date, station_id: station_id, status: status, successful_runs: successful_runs } end |
#blueprint_id ⇒ Object
38 39 40 |
# File 'lib/eve_online/esi/models/character_industry_job.rb', line 38 def blueprint_id ["blueprint_id"] end |
#blueprint_location_id ⇒ Object
42 43 44 |
# File 'lib/eve_online/esi/models/character_industry_job.rb', line 42 def blueprint_location_id ["blueprint_location_id"] end |
#blueprint_type_id ⇒ Object
46 47 48 |
# File 'lib/eve_online/esi/models/character_industry_job.rb', line 46 def blueprint_type_id ["blueprint_type_id"] end |
#completed_character_id ⇒ Object
50 51 52 |
# File 'lib/eve_online/esi/models/character_industry_job.rb', line 50 def completed_character_id ["completed_character_id"] end |
#completed_date ⇒ Object
54 55 56 57 58 |
# File 'lib/eve_online/esi/models/character_industry_job.rb', line 54 def completed_date completed_date = ["completed_date"] parse_datetime_with_timezone(completed_date) if completed_date end |
#cost ⇒ Object
60 61 62 |
# File 'lib/eve_online/esi/models/character_industry_job.rb', line 60 def cost ["cost"] end |
#duration ⇒ Object
64 65 66 |
# File 'lib/eve_online/esi/models/character_industry_job.rb', line 64 def duration ["duration"] end |
#end_date ⇒ Object
68 69 70 71 72 |
# File 'lib/eve_online/esi/models/character_industry_job.rb', line 68 def end_date end_date = ["end_date"] parse_datetime_with_timezone(end_date) if end_date end |
#facility_id ⇒ Object
74 75 76 |
# File 'lib/eve_online/esi/models/character_industry_job.rb', line 74 def facility_id ["facility_id"] end |
#installer_id ⇒ Object
78 79 80 |
# File 'lib/eve_online/esi/models/character_industry_job.rb', line 78 def installer_id ["installer_id"] end |
#job_id ⇒ Object
82 83 84 |
# File 'lib/eve_online/esi/models/character_industry_job.rb', line 82 def job_id ["job_id"] end |
#licensed_runs ⇒ Object
86 87 88 |
# File 'lib/eve_online/esi/models/character_industry_job.rb', line 86 def licensed_runs ["licensed_runs"] end |
#output_location_id ⇒ Object
90 91 92 |
# File 'lib/eve_online/esi/models/character_industry_job.rb', line 90 def output_location_id ["output_location_id"] end |
#pause_date ⇒ Object
94 95 96 97 98 |
# File 'lib/eve_online/esi/models/character_industry_job.rb', line 94 def pause_date pause_date = ["pause_date"] parse_datetime_with_timezone(pause_date) if pause_date end |
#probability ⇒ Object
100 101 102 |
# File 'lib/eve_online/esi/models/character_industry_job.rb', line 100 def probability ["probability"] end |
#product_type_id ⇒ Object
104 105 106 |
# File 'lib/eve_online/esi/models/character_industry_job.rb', line 104 def product_type_id ["product_type_id"] end |
#runs ⇒ Object
108 109 110 |
# File 'lib/eve_online/esi/models/character_industry_job.rb', line 108 def runs ["runs"] end |
#start_date ⇒ Object
112 113 114 115 116 |
# File 'lib/eve_online/esi/models/character_industry_job.rb', line 112 def start_date start_date = ["start_date"] parse_datetime_with_timezone(start_date) if start_date end |
#station_id ⇒ Object
118 119 120 |
# File 'lib/eve_online/esi/models/character_industry_job.rb', line 118 def station_id ["station_id"] end |
#status ⇒ Object
122 123 124 |
# File 'lib/eve_online/esi/models/character_industry_job.rb', line 122 def status ["status"] end |
#successful_runs ⇒ Object
126 127 128 |
# File 'lib/eve_online/esi/models/character_industry_job.rb', line 126 def successful_runs ["successful_runs"] end |