mpxj 9.4.0 → 9.6.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of mpxj might be problematic. Click here for more details.

Binary file
@@ -5,51 +5,15 @@ module MPXJ
5
5
  # Base class from which all project entities are derived
6
6
  class Container
7
7
  attr_reader :parent_project
8
- def initialize(parent_project, attribute_types, attribute_values)
8
+ def initialize(parent_project, attribute_values)
9
9
  @parent_project = parent_project
10
- @attribute_types = attribute_types
11
10
  @attribute_values = attribute_values
12
11
  end
13
12
 
14
- def method_missing(name, *args, &block)
15
- # We can probably do this more efficiently with dynamic methods... but let's get some feedback first!
16
- attribute_name = name.to_s
17
- attribute_type = @attribute_types[attribute_name]
18
- attribute_value = @attribute_values[attribute_name]
19
-
20
- if attribute_type.nil? && attribute_value.nil?
21
- super
22
- else
23
- if attribute_type.nil?
24
- attribute_type = 1
25
- end
26
- get_attribute_value(attribute_type, attribute_value)
27
- end
28
- end
29
-
30
- protected
31
-
32
13
  attr_reader :attribute_values
33
14
 
34
15
  private
35
16
 
36
- def get_attribute_value(attribute_type, attribute_value)
37
- case attribute_type.to_i
38
- when 12, 17, 19
39
- get_integer_value(attribute_value)
40
- when 8, 3, 5, 7
41
- get_float_value(attribute_value)
42
- when 2
43
- get_date_value(attribute_value)
44
- when 6, 16, 21
45
- get_duration_value(attribute_value)
46
- when 4
47
- get_boolean_value(attribute_value)
48
- else
49
- attribute_value
50
- end
51
- end
52
-
53
17
  def get_duration_value(attribute_value)
54
18
  if attribute_value.nil?
55
19
  Duration.new(0)
Binary file
Binary file
data/lib/mpxj/mpxj.jar CHANGED
Binary file
data/lib/mpxj/project.rb CHANGED
@@ -69,7 +69,7 @@ module MPXJ
69
69
  # @return [Task] if the requested task is found
70
70
  # @return [nil] if the requested task is not found
71
71
  def get_task_by_id(id)
72
- @tasks_by_unique_id[id]
72
+ @tasks_by_id[id]
73
73
  end
74
74
 
75
75
  # For a particular entity type (task, resource, and so on), retrieve
@@ -130,16 +130,13 @@ module MPXJ
130
130
  end
131
131
 
132
132
  def process_properties(json_data)
133
- attribute_types = json_data["property_types"]
134
- attribute_values = json_data["property_values"]
135
- @properties = Properties.new(self, attribute_types, attribute_values)
133
+ @properties = Properties.new(self, json_data["property_values"])
136
134
  end
137
135
 
138
136
  def process_resources(json_data)
139
- attribute_types = json_data["resource_types"]
140
137
  resources = json_data["resources"]
141
138
  resources.each do |attribute_values|
142
- resource = Resource.new(self, attribute_types, attribute_values)
139
+ resource = Resource.new(self, attribute_values)
143
140
  @all_resources << resource
144
141
  @resources_by_unique_id[resource.unique_id] = resource
145
142
  @resources_by_id[resource.id] = resource
@@ -147,10 +144,9 @@ module MPXJ
147
144
  end
148
145
 
149
146
  def process_tasks(json_data)
150
- attribute_types = json_data["task_types"]
151
147
  tasks = json_data["tasks"]
152
148
  tasks.each do |attribute_values|
153
- task = Task.new(self, attribute_types, attribute_values)
149
+ task = Task.new(self, attribute_values)
154
150
  @all_tasks << task
155
151
  @tasks_by_unique_id[task.unique_id] = task
156
152
  @tasks_by_id[task.id] = task
@@ -158,10 +154,9 @@ module MPXJ
158
154
  end
159
155
 
160
156
  def process_assignments(json_data)
161
- attribute_types = json_data["assignment_types"]
162
157
  assignments = json_data["assignments"]
163
158
  assignments.each do |attribute_values|
164
- assignment = Assignment.new(self, attribute_types, attribute_values)
159
+ assignment = Assignment.new(self, attribute_values)
165
160
  @all_assignments << assignment
166
161
  if assignment.task
167
162
  assignment.task.assignments << assignment
@@ -1,5 +1,6 @@
1
- module MPXJ
2
- # Represents the properties of a project
3
- class Properties < Container
4
- end
5
- end
1
+ module MPXJ
2
+ # Represents the properties of a project
3
+ class Properties < Container
4
+ include MPXJ::PropertyMethods
5
+ end
6
+ end
@@ -0,0 +1,2708 @@
1
+ module MPXJ
2
+ module PropertyMethods
3
+ def self.included(base)
4
+ base.extend(PropertyClassMethods)
5
+ end
6
+
7
+ # Retrieve the Actuals In Sync value
8
+ #
9
+ # @return Actuals In Sync value
10
+ def actuals_in_sync
11
+ get_boolean_value(attribute_values['actuals_in_sync'])
12
+ end
13
+
14
+ # Retrieve the Actual Cost value
15
+ #
16
+ # @return Actual Cost value
17
+ def actual_cost
18
+ get_float_value(attribute_values['actual_cost'])
19
+ end
20
+
21
+ # Retrieve the Actual Duration value
22
+ #
23
+ # @return Actual Duration value
24
+ def actual_duration
25
+ get_duration_value(attribute_values['actual_duration'])
26
+ end
27
+
28
+ # Retrieve the Actual Finish value
29
+ #
30
+ # @return Actual Finish value
31
+ def actual_finish
32
+ get_date_value(attribute_values['actual_finish'])
33
+ end
34
+
35
+ # Retrieve the Actual Start value
36
+ #
37
+ # @return Actual Start value
38
+ def actual_start
39
+ get_date_value(attribute_values['actual_start'])
40
+ end
41
+
42
+ # Retrieve the Actual Work value
43
+ #
44
+ # @return Actual Work value
45
+ def actual_work
46
+ get_duration_value(attribute_values['actual_work'])
47
+ end
48
+
49
+ # Retrieve the Admin Project value
50
+ #
51
+ # @return Admin Project value
52
+ def admin_project
53
+ get_boolean_value(attribute_values['admin_project'])
54
+ end
55
+
56
+ # Retrieve the AM Text value
57
+ #
58
+ # @return AM Text value
59
+ def am_text
60
+ attribute_values['am_text']
61
+ end
62
+
63
+ # Retrieve the Application Version value
64
+ #
65
+ # @return Application Version value
66
+ def application_version
67
+ get_integer_value(attribute_values['application_version'])
68
+ end
69
+
70
+ # Retrieve the Author value
71
+ #
72
+ # @return Author value
73
+ def author
74
+ attribute_values['author']
75
+ end
76
+
77
+ # Retrieve the Auto Filter value
78
+ #
79
+ # @return Auto Filter value
80
+ def autofilter
81
+ get_boolean_value(attribute_values['autofilter'])
82
+ end
83
+
84
+ # Retrieve the Auto Add New Resources and Tasks value
85
+ #
86
+ # @return Auto Add New Resources and Tasks value
87
+ def auto_add_new_resources_and_tasks
88
+ get_boolean_value(attribute_values['auto_add_new_resources_and_tasks'])
89
+ end
90
+
91
+ # Retrieve the Auto Link value
92
+ #
93
+ # @return Auto Link value
94
+ def auto_link
95
+ get_boolean_value(attribute_values['auto_link'])
96
+ end
97
+
98
+ # Retrieve the Bar Text Date Format value
99
+ #
100
+ # @return Bar Text Date Format value
101
+ def bar_text_date_format
102
+ attribute_values['bar_text_date_format']
103
+ end
104
+
105
+ # Retrieve the Baseline10 Date value
106
+ #
107
+ # @return Baseline10 Date value
108
+ def baseline10_date
109
+ get_date_value(attribute_values['baseline10_date'])
110
+ end
111
+
112
+ # Retrieve the Baseline1 Date value
113
+ #
114
+ # @return Baseline1 Date value
115
+ def baseline1_date
116
+ get_date_value(attribute_values['baseline1_date'])
117
+ end
118
+
119
+ # Retrieve the Baseline2 Date value
120
+ #
121
+ # @return Baseline2 Date value
122
+ def baseline2_date
123
+ get_date_value(attribute_values['baseline2_date'])
124
+ end
125
+
126
+ # Retrieve the Baseline3 Date value
127
+ #
128
+ # @return Baseline3 Date value
129
+ def baseline3_date
130
+ get_date_value(attribute_values['baseline3_date'])
131
+ end
132
+
133
+ # Retrieve the Baseline4 Date value
134
+ #
135
+ # @return Baseline4 Date value
136
+ def baseline4_date
137
+ get_date_value(attribute_values['baseline4_date'])
138
+ end
139
+
140
+ # Retrieve the Baseline5 Date value
141
+ #
142
+ # @return Baseline5 Date value
143
+ def baseline5_date
144
+ get_date_value(attribute_values['baseline5_date'])
145
+ end
146
+
147
+ # Retrieve the Baseline6 Date value
148
+ #
149
+ # @return Baseline6 Date value
150
+ def baseline6_date
151
+ get_date_value(attribute_values['baseline6_date'])
152
+ end
153
+
154
+ # Retrieve the Baseline7 Date value
155
+ #
156
+ # @return Baseline7 Date value
157
+ def baseline7_date
158
+ get_date_value(attribute_values['baseline7_date'])
159
+ end
160
+
161
+ # Retrieve the Baseline8 Date value
162
+ #
163
+ # @return Baseline8 Date value
164
+ def baseline8_date
165
+ get_date_value(attribute_values['baseline8_date'])
166
+ end
167
+
168
+ # Retrieve the Baseline9 Date value
169
+ #
170
+ # @return Baseline9 Date value
171
+ def baseline9_date
172
+ get_date_value(attribute_values['baseline9_date'])
173
+ end
174
+
175
+ # Retrieve the Baseline Cost value
176
+ #
177
+ # @return Baseline Cost value
178
+ def baseline_cost
179
+ get_float_value(attribute_values['baseline_cost'])
180
+ end
181
+
182
+ # Retrieve the Baseline Date value
183
+ #
184
+ # @return Baseline Date value
185
+ def baseline_date
186
+ get_date_value(attribute_values['baseline_date'])
187
+ end
188
+
189
+ # Retrieve the Baseline Duration value
190
+ #
191
+ # @return Baseline Duration value
192
+ def baseline_duration
193
+ get_duration_value(attribute_values['baseline_duration'])
194
+ end
195
+
196
+ # Retrieve the Baseline Finish value
197
+ #
198
+ # @return Baseline Finish value
199
+ def baseline_finish
200
+ get_date_value(attribute_values['baseline_finish'])
201
+ end
202
+
203
+ # Retrieve the Baseline For Earned Value value
204
+ #
205
+ # @return Baseline For Earned Value value
206
+ def baseline_for_earned_value
207
+ get_integer_value(attribute_values['baseline_for_earned_value'])
208
+ end
209
+
210
+ # Retrieve the Baseline Project Unique ID value
211
+ #
212
+ # @return Baseline Project Unique ID value
213
+ def baseline_project_unique_id
214
+ get_integer_value(attribute_values['baseline_project_unique_id'])
215
+ end
216
+
217
+ # Retrieve the Baseline Start value
218
+ #
219
+ # @return Baseline Start value
220
+ def baseline_start
221
+ get_date_value(attribute_values['baseline_start'])
222
+ end
223
+
224
+ # Retrieve the Baseline Work value
225
+ #
226
+ # @return Baseline Work value
227
+ def baseline_work
228
+ get_duration_value(attribute_values['baseline_work'])
229
+ end
230
+
231
+ # Retrieve the Category value
232
+ #
233
+ # @return Category value
234
+ def category
235
+ attribute_values['category']
236
+ end
237
+
238
+ # Retrieve the Comments value
239
+ #
240
+ # @return Comments value
241
+ def comments
242
+ attribute_values['comments']
243
+ end
244
+
245
+ # Retrieve the Company value
246
+ #
247
+ # @return Company value
248
+ def company
249
+ attribute_values['company']
250
+ end
251
+
252
+ # Retrieve the Content Status value
253
+ #
254
+ # @return Content Status value
255
+ def content_status
256
+ attribute_values['content_status']
257
+ end
258
+
259
+ # Retrieve the Content Type value
260
+ #
261
+ # @return Content Type value
262
+ def content_type
263
+ attribute_values['content_type']
264
+ end
265
+
266
+ # Retrieve the Cost value
267
+ #
268
+ # @return Cost value
269
+ def cost
270
+ get_float_value(attribute_values['cost'])
271
+ end
272
+
273
+ # Retrieve the Creation Date value
274
+ #
275
+ # @return Creation Date value
276
+ def creation_date
277
+ get_date_value(attribute_values['creation_date'])
278
+ end
279
+
280
+ # Retrieve the Critical Activity Type value
281
+ #
282
+ # @return Critical Activity Type value
283
+ def critical_activity_type
284
+ attribute_values['critical_activity_type']
285
+ end
286
+
287
+ # Retrieve the Critical Slack Limit value
288
+ #
289
+ # @return Critical Slack Limit value
290
+ def critical_slack_limit
291
+ get_integer_value(attribute_values['critical_slack_limit'])
292
+ end
293
+
294
+ # Retrieve the Currency Code value
295
+ #
296
+ # @return Currency Code value
297
+ def currency_code
298
+ attribute_values['currency_code']
299
+ end
300
+
301
+ # Retrieve the Currency Digits value
302
+ #
303
+ # @return Currency Digits value
304
+ def currency_digits
305
+ get_integer_value(attribute_values['currency_digits'])
306
+ end
307
+
308
+ # Retrieve the Currency Symbol value
309
+ #
310
+ # @return Currency Symbol value
311
+ def currency_symbol
312
+ attribute_values['currency_symbol']
313
+ end
314
+
315
+ # Retrieve the Currency Symbol Position value
316
+ #
317
+ # @return Currency Symbol Position value
318
+ def currency_symbol_position
319
+ attribute_values['currency_symbol_position']
320
+ end
321
+
322
+ # Retrieve the Current Date value
323
+ #
324
+ # @return Current Date value
325
+ def current_date
326
+ get_date_value(attribute_values['current_date'])
327
+ end
328
+
329
+ # Retrieve the Custom Properties value
330
+ #
331
+ # @return Custom Properties value
332
+ def custom_properties
333
+ attribute_values['custom_properties']
334
+ end
335
+
336
+ # Retrieve the Date Format value
337
+ #
338
+ # @return Date Format value
339
+ def date_format
340
+ attribute_values['date_format']
341
+ end
342
+
343
+ # Retrieve the Date Order value
344
+ #
345
+ # @return Date Order value
346
+ def date_order
347
+ attribute_values['date_order']
348
+ end
349
+
350
+ # Retrieve the Date Separator value
351
+ #
352
+ # @return Date Separator value
353
+ def date_separator
354
+ attribute_values['date_separator']
355
+ end
356
+
357
+ # Retrieve the Days per Month value
358
+ #
359
+ # @return Days per Month value
360
+ def days_per_month
361
+ get_integer_value(attribute_values['days_per_month'])
362
+ end
363
+
364
+ # Retrieve the Decimal Separator value
365
+ #
366
+ # @return Decimal Separator value
367
+ def decimal_separator
368
+ attribute_values['decimal_separator']
369
+ end
370
+
371
+ # Retrieve the Default Calendar Name value
372
+ #
373
+ # @return Default Calendar Name value
374
+ def default_calendar_name
375
+ attribute_values['default_calendar_name']
376
+ end
377
+
378
+ # Retrieve the Default Duration Is Fixed value
379
+ #
380
+ # @return Default Duration Is Fixed value
381
+ def default_duration_is_fixed
382
+ get_boolean_value(attribute_values['default_duration_is_fixed'])
383
+ end
384
+
385
+ # Retrieve the Default Duration Units value
386
+ #
387
+ # @return Default Duration Units value
388
+ def default_duration_units
389
+ attribute_values['default_duration_units']
390
+ end
391
+
392
+ # Retrieve the Default End Time value
393
+ #
394
+ # @return Default End Time value
395
+ def default_end_time
396
+ get_date_value(attribute_values['default_end_time'])
397
+ end
398
+
399
+ # Retrieve the Default Fixed Cost Accrual value
400
+ #
401
+ # @return Default Fixed Cost Accrual value
402
+ def default_fixed_cost_accrual
403
+ attribute_values['default_fixed_cost_accrual']
404
+ end
405
+
406
+ # Retrieve the Default Overtime Rate value
407
+ #
408
+ # @return Default Overtime Rate value
409
+ def default_overtime_rate
410
+ attribute_values['default_overtime_rate']
411
+ end
412
+
413
+ # Retrieve the Default Standard Rate value
414
+ #
415
+ # @return Default Standard Rate value
416
+ def default_standard_rate
417
+ attribute_values['default_standard_rate']
418
+ end
419
+
420
+ # Retrieve the Default Start Time value
421
+ #
422
+ # @return Default Start Time value
423
+ def default_start_time
424
+ get_date_value(attribute_values['default_start_time'])
425
+ end
426
+
427
+ # Retrieve the Default Tssk Earned Value Method value
428
+ #
429
+ # @return Default Tssk Earned Value Method value
430
+ def default_task_earned_value_method
431
+ attribute_values['default_task_earned_value_method']
432
+ end
433
+
434
+ # Retrieve the Default Task Type value
435
+ #
436
+ # @return Default Task Type value
437
+ def default_task_type
438
+ attribute_values['default_task_type']
439
+ end
440
+
441
+ # Retrieve the Default Work Units value
442
+ #
443
+ # @return Default Work Units value
444
+ def default_work_units
445
+ attribute_values['default_work_units']
446
+ end
447
+
448
+ # Retrieve the Document Version value
449
+ #
450
+ # @return Document Version value
451
+ def document_version
452
+ attribute_values['document_version']
453
+ end
454
+
455
+ # Retrieve the Duration value
456
+ #
457
+ # @return Duration value
458
+ def duration
459
+ get_duration_value(attribute_values['duration'])
460
+ end
461
+
462
+ # Retrieve the Earned Value Method value
463
+ #
464
+ # @return Earned Value Method value
465
+ def earned_value_method
466
+ attribute_values['earned_value_method']
467
+ end
468
+
469
+ # Retrieve the Editable Actual Costs value
470
+ #
471
+ # @return Editable Actual Costs value
472
+ def editable_actual_costs
473
+ get_boolean_value(attribute_values['editable_actual_costs'])
474
+ end
475
+
476
+ # Retrieve the Editing Time value
477
+ #
478
+ # @return Editing Time value
479
+ def editing_time
480
+ get_integer_value(attribute_values['editing_time'])
481
+ end
482
+
483
+ # Retrieve the Enterprise Custom Field 1 value
484
+ #
485
+ # @return Enterprise Custom Field 1 value
486
+ def enterprise_custom_field1
487
+ attribute_values['enterprise_custom_field1']
488
+ end
489
+
490
+ # Retrieve the Enterprise Custom Field 10 value
491
+ #
492
+ # @return Enterprise Custom Field 10 value
493
+ def enterprise_custom_field10
494
+ attribute_values['enterprise_custom_field10']
495
+ end
496
+
497
+ # Retrieve the Enterprise Custom Field 100 value
498
+ #
499
+ # @return Enterprise Custom Field 100 value
500
+ def enterprise_custom_field100
501
+ attribute_values['enterprise_custom_field100']
502
+ end
503
+
504
+ # Retrieve the Enterprise Custom Field 101 value
505
+ #
506
+ # @return Enterprise Custom Field 101 value
507
+ def enterprise_custom_field101
508
+ attribute_values['enterprise_custom_field101']
509
+ end
510
+
511
+ # Retrieve the Enterprise Custom Field 102 value
512
+ #
513
+ # @return Enterprise Custom Field 102 value
514
+ def enterprise_custom_field102
515
+ attribute_values['enterprise_custom_field102']
516
+ end
517
+
518
+ # Retrieve the Enterprise Custom Field 103 value
519
+ #
520
+ # @return Enterprise Custom Field 103 value
521
+ def enterprise_custom_field103
522
+ attribute_values['enterprise_custom_field103']
523
+ end
524
+
525
+ # Retrieve the Enterprise Custom Field 104 value
526
+ #
527
+ # @return Enterprise Custom Field 104 value
528
+ def enterprise_custom_field104
529
+ attribute_values['enterprise_custom_field104']
530
+ end
531
+
532
+ # Retrieve the Enterprise Custom Field 105 value
533
+ #
534
+ # @return Enterprise Custom Field 105 value
535
+ def enterprise_custom_field105
536
+ attribute_values['enterprise_custom_field105']
537
+ end
538
+
539
+ # Retrieve the Enterprise Custom Field 106 value
540
+ #
541
+ # @return Enterprise Custom Field 106 value
542
+ def enterprise_custom_field106
543
+ attribute_values['enterprise_custom_field106']
544
+ end
545
+
546
+ # Retrieve the Enterprise Custom Field 107 value
547
+ #
548
+ # @return Enterprise Custom Field 107 value
549
+ def enterprise_custom_field107
550
+ attribute_values['enterprise_custom_field107']
551
+ end
552
+
553
+ # Retrieve the Enterprise Custom Field 108 value
554
+ #
555
+ # @return Enterprise Custom Field 108 value
556
+ def enterprise_custom_field108
557
+ attribute_values['enterprise_custom_field108']
558
+ end
559
+
560
+ # Retrieve the Enterprise Custom Field 109 value
561
+ #
562
+ # @return Enterprise Custom Field 109 value
563
+ def enterprise_custom_field109
564
+ attribute_values['enterprise_custom_field109']
565
+ end
566
+
567
+ # Retrieve the Enterprise Custom Field 11 value
568
+ #
569
+ # @return Enterprise Custom Field 11 value
570
+ def enterprise_custom_field11
571
+ attribute_values['enterprise_custom_field11']
572
+ end
573
+
574
+ # Retrieve the Enterprise Custom Field 110 value
575
+ #
576
+ # @return Enterprise Custom Field 110 value
577
+ def enterprise_custom_field110
578
+ attribute_values['enterprise_custom_field110']
579
+ end
580
+
581
+ # Retrieve the Enterprise Custom Field 111 value
582
+ #
583
+ # @return Enterprise Custom Field 111 value
584
+ def enterprise_custom_field111
585
+ attribute_values['enterprise_custom_field111']
586
+ end
587
+
588
+ # Retrieve the Enterprise Custom Field 112 value
589
+ #
590
+ # @return Enterprise Custom Field 112 value
591
+ def enterprise_custom_field112
592
+ attribute_values['enterprise_custom_field112']
593
+ end
594
+
595
+ # Retrieve the Enterprise Custom Field 113 value
596
+ #
597
+ # @return Enterprise Custom Field 113 value
598
+ def enterprise_custom_field113
599
+ attribute_values['enterprise_custom_field113']
600
+ end
601
+
602
+ # Retrieve the Enterprise Custom Field 114 value
603
+ #
604
+ # @return Enterprise Custom Field 114 value
605
+ def enterprise_custom_field114
606
+ attribute_values['enterprise_custom_field114']
607
+ end
608
+
609
+ # Retrieve the Enterprise Custom Field 115 value
610
+ #
611
+ # @return Enterprise Custom Field 115 value
612
+ def enterprise_custom_field115
613
+ attribute_values['enterprise_custom_field115']
614
+ end
615
+
616
+ # Retrieve the Enterprise Custom Field 116 value
617
+ #
618
+ # @return Enterprise Custom Field 116 value
619
+ def enterprise_custom_field116
620
+ attribute_values['enterprise_custom_field116']
621
+ end
622
+
623
+ # Retrieve the Enterprise Custom Field 117 value
624
+ #
625
+ # @return Enterprise Custom Field 117 value
626
+ def enterprise_custom_field117
627
+ attribute_values['enterprise_custom_field117']
628
+ end
629
+
630
+ # Retrieve the Enterprise Custom Field 118 value
631
+ #
632
+ # @return Enterprise Custom Field 118 value
633
+ def enterprise_custom_field118
634
+ attribute_values['enterprise_custom_field118']
635
+ end
636
+
637
+ # Retrieve the Enterprise Custom Field 119 value
638
+ #
639
+ # @return Enterprise Custom Field 119 value
640
+ def enterprise_custom_field119
641
+ attribute_values['enterprise_custom_field119']
642
+ end
643
+
644
+ # Retrieve the Enterprise Custom Field 12 value
645
+ #
646
+ # @return Enterprise Custom Field 12 value
647
+ def enterprise_custom_field12
648
+ attribute_values['enterprise_custom_field12']
649
+ end
650
+
651
+ # Retrieve the Enterprise Custom Field 120 value
652
+ #
653
+ # @return Enterprise Custom Field 120 value
654
+ def enterprise_custom_field120
655
+ attribute_values['enterprise_custom_field120']
656
+ end
657
+
658
+ # Retrieve the Enterprise Custom Field 121 value
659
+ #
660
+ # @return Enterprise Custom Field 121 value
661
+ def enterprise_custom_field121
662
+ attribute_values['enterprise_custom_field121']
663
+ end
664
+
665
+ # Retrieve the Enterprise Custom Field 122 value
666
+ #
667
+ # @return Enterprise Custom Field 122 value
668
+ def enterprise_custom_field122
669
+ attribute_values['enterprise_custom_field122']
670
+ end
671
+
672
+ # Retrieve the Enterprise Custom Field 123 value
673
+ #
674
+ # @return Enterprise Custom Field 123 value
675
+ def enterprise_custom_field123
676
+ attribute_values['enterprise_custom_field123']
677
+ end
678
+
679
+ # Retrieve the Enterprise Custom Field 124 value
680
+ #
681
+ # @return Enterprise Custom Field 124 value
682
+ def enterprise_custom_field124
683
+ attribute_values['enterprise_custom_field124']
684
+ end
685
+
686
+ # Retrieve the Enterprise Custom Field 125 value
687
+ #
688
+ # @return Enterprise Custom Field 125 value
689
+ def enterprise_custom_field125
690
+ attribute_values['enterprise_custom_field125']
691
+ end
692
+
693
+ # Retrieve the Enterprise Custom Field 126 value
694
+ #
695
+ # @return Enterprise Custom Field 126 value
696
+ def enterprise_custom_field126
697
+ attribute_values['enterprise_custom_field126']
698
+ end
699
+
700
+ # Retrieve the Enterprise Custom Field 127 value
701
+ #
702
+ # @return Enterprise Custom Field 127 value
703
+ def enterprise_custom_field127
704
+ attribute_values['enterprise_custom_field127']
705
+ end
706
+
707
+ # Retrieve the Enterprise Custom Field 128 value
708
+ #
709
+ # @return Enterprise Custom Field 128 value
710
+ def enterprise_custom_field128
711
+ attribute_values['enterprise_custom_field128']
712
+ end
713
+
714
+ # Retrieve the Enterprise Custom Field 129 value
715
+ #
716
+ # @return Enterprise Custom Field 129 value
717
+ def enterprise_custom_field129
718
+ attribute_values['enterprise_custom_field129']
719
+ end
720
+
721
+ # Retrieve the Enterprise Custom Field 13 value
722
+ #
723
+ # @return Enterprise Custom Field 13 value
724
+ def enterprise_custom_field13
725
+ attribute_values['enterprise_custom_field13']
726
+ end
727
+
728
+ # Retrieve the Enterprise Custom Field 130 value
729
+ #
730
+ # @return Enterprise Custom Field 130 value
731
+ def enterprise_custom_field130
732
+ attribute_values['enterprise_custom_field130']
733
+ end
734
+
735
+ # Retrieve the Enterprise Custom Field 131 value
736
+ #
737
+ # @return Enterprise Custom Field 131 value
738
+ def enterprise_custom_field131
739
+ attribute_values['enterprise_custom_field131']
740
+ end
741
+
742
+ # Retrieve the Enterprise Custom Field 132 value
743
+ #
744
+ # @return Enterprise Custom Field 132 value
745
+ def enterprise_custom_field132
746
+ attribute_values['enterprise_custom_field132']
747
+ end
748
+
749
+ # Retrieve the Enterprise Custom Field 133 value
750
+ #
751
+ # @return Enterprise Custom Field 133 value
752
+ def enterprise_custom_field133
753
+ attribute_values['enterprise_custom_field133']
754
+ end
755
+
756
+ # Retrieve the Enterprise Custom Field 134 value
757
+ #
758
+ # @return Enterprise Custom Field 134 value
759
+ def enterprise_custom_field134
760
+ attribute_values['enterprise_custom_field134']
761
+ end
762
+
763
+ # Retrieve the Enterprise Custom Field 135 value
764
+ #
765
+ # @return Enterprise Custom Field 135 value
766
+ def enterprise_custom_field135
767
+ attribute_values['enterprise_custom_field135']
768
+ end
769
+
770
+ # Retrieve the Enterprise Custom Field 136 value
771
+ #
772
+ # @return Enterprise Custom Field 136 value
773
+ def enterprise_custom_field136
774
+ attribute_values['enterprise_custom_field136']
775
+ end
776
+
777
+ # Retrieve the Enterprise Custom Field 137 value
778
+ #
779
+ # @return Enterprise Custom Field 137 value
780
+ def enterprise_custom_field137
781
+ attribute_values['enterprise_custom_field137']
782
+ end
783
+
784
+ # Retrieve the Enterprise Custom Field 138 value
785
+ #
786
+ # @return Enterprise Custom Field 138 value
787
+ def enterprise_custom_field138
788
+ attribute_values['enterprise_custom_field138']
789
+ end
790
+
791
+ # Retrieve the Enterprise Custom Field 139 value
792
+ #
793
+ # @return Enterprise Custom Field 139 value
794
+ def enterprise_custom_field139
795
+ attribute_values['enterprise_custom_field139']
796
+ end
797
+
798
+ # Retrieve the Enterprise Custom Field 14 value
799
+ #
800
+ # @return Enterprise Custom Field 14 value
801
+ def enterprise_custom_field14
802
+ attribute_values['enterprise_custom_field14']
803
+ end
804
+
805
+ # Retrieve the Enterprise Custom Field 140 value
806
+ #
807
+ # @return Enterprise Custom Field 140 value
808
+ def enterprise_custom_field140
809
+ attribute_values['enterprise_custom_field140']
810
+ end
811
+
812
+ # Retrieve the Enterprise Custom Field 141 value
813
+ #
814
+ # @return Enterprise Custom Field 141 value
815
+ def enterprise_custom_field141
816
+ attribute_values['enterprise_custom_field141']
817
+ end
818
+
819
+ # Retrieve the Enterprise Custom Field 142 value
820
+ #
821
+ # @return Enterprise Custom Field 142 value
822
+ def enterprise_custom_field142
823
+ attribute_values['enterprise_custom_field142']
824
+ end
825
+
826
+ # Retrieve the Enterprise Custom Field 143 value
827
+ #
828
+ # @return Enterprise Custom Field 143 value
829
+ def enterprise_custom_field143
830
+ attribute_values['enterprise_custom_field143']
831
+ end
832
+
833
+ # Retrieve the Enterprise Custom Field 144 value
834
+ #
835
+ # @return Enterprise Custom Field 144 value
836
+ def enterprise_custom_field144
837
+ attribute_values['enterprise_custom_field144']
838
+ end
839
+
840
+ # Retrieve the Enterprise Custom Field 145 value
841
+ #
842
+ # @return Enterprise Custom Field 145 value
843
+ def enterprise_custom_field145
844
+ attribute_values['enterprise_custom_field145']
845
+ end
846
+
847
+ # Retrieve the Enterprise Custom Field 146 value
848
+ #
849
+ # @return Enterprise Custom Field 146 value
850
+ def enterprise_custom_field146
851
+ attribute_values['enterprise_custom_field146']
852
+ end
853
+
854
+ # Retrieve the Enterprise Custom Field 147 value
855
+ #
856
+ # @return Enterprise Custom Field 147 value
857
+ def enterprise_custom_field147
858
+ attribute_values['enterprise_custom_field147']
859
+ end
860
+
861
+ # Retrieve the Enterprise Custom Field 148 value
862
+ #
863
+ # @return Enterprise Custom Field 148 value
864
+ def enterprise_custom_field148
865
+ attribute_values['enterprise_custom_field148']
866
+ end
867
+
868
+ # Retrieve the Enterprise Custom Field 149 value
869
+ #
870
+ # @return Enterprise Custom Field 149 value
871
+ def enterprise_custom_field149
872
+ attribute_values['enterprise_custom_field149']
873
+ end
874
+
875
+ # Retrieve the Enterprise Custom Field 15 value
876
+ #
877
+ # @return Enterprise Custom Field 15 value
878
+ def enterprise_custom_field15
879
+ attribute_values['enterprise_custom_field15']
880
+ end
881
+
882
+ # Retrieve the Enterprise Custom Field 150 value
883
+ #
884
+ # @return Enterprise Custom Field 150 value
885
+ def enterprise_custom_field150
886
+ attribute_values['enterprise_custom_field150']
887
+ end
888
+
889
+ # Retrieve the Enterprise Custom Field 151 value
890
+ #
891
+ # @return Enterprise Custom Field 151 value
892
+ def enterprise_custom_field151
893
+ attribute_values['enterprise_custom_field151']
894
+ end
895
+
896
+ # Retrieve the Enterprise Custom Field 152 value
897
+ #
898
+ # @return Enterprise Custom Field 152 value
899
+ def enterprise_custom_field152
900
+ attribute_values['enterprise_custom_field152']
901
+ end
902
+
903
+ # Retrieve the Enterprise Custom Field 153 value
904
+ #
905
+ # @return Enterprise Custom Field 153 value
906
+ def enterprise_custom_field153
907
+ attribute_values['enterprise_custom_field153']
908
+ end
909
+
910
+ # Retrieve the Enterprise Custom Field 154 value
911
+ #
912
+ # @return Enterprise Custom Field 154 value
913
+ def enterprise_custom_field154
914
+ attribute_values['enterprise_custom_field154']
915
+ end
916
+
917
+ # Retrieve the Enterprise Custom Field 155 value
918
+ #
919
+ # @return Enterprise Custom Field 155 value
920
+ def enterprise_custom_field155
921
+ attribute_values['enterprise_custom_field155']
922
+ end
923
+
924
+ # Retrieve the Enterprise Custom Field 156 value
925
+ #
926
+ # @return Enterprise Custom Field 156 value
927
+ def enterprise_custom_field156
928
+ attribute_values['enterprise_custom_field156']
929
+ end
930
+
931
+ # Retrieve the Enterprise Custom Field 157 value
932
+ #
933
+ # @return Enterprise Custom Field 157 value
934
+ def enterprise_custom_field157
935
+ attribute_values['enterprise_custom_field157']
936
+ end
937
+
938
+ # Retrieve the Enterprise Custom Field 158 value
939
+ #
940
+ # @return Enterprise Custom Field 158 value
941
+ def enterprise_custom_field158
942
+ attribute_values['enterprise_custom_field158']
943
+ end
944
+
945
+ # Retrieve the Enterprise Custom Field 159 value
946
+ #
947
+ # @return Enterprise Custom Field 159 value
948
+ def enterprise_custom_field159
949
+ attribute_values['enterprise_custom_field159']
950
+ end
951
+
952
+ # Retrieve the Enterprise Custom Field 16 value
953
+ #
954
+ # @return Enterprise Custom Field 16 value
955
+ def enterprise_custom_field16
956
+ attribute_values['enterprise_custom_field16']
957
+ end
958
+
959
+ # Retrieve the Enterprise Custom Field 160 value
960
+ #
961
+ # @return Enterprise Custom Field 160 value
962
+ def enterprise_custom_field160
963
+ attribute_values['enterprise_custom_field160']
964
+ end
965
+
966
+ # Retrieve the Enterprise Custom Field 161 value
967
+ #
968
+ # @return Enterprise Custom Field 161 value
969
+ def enterprise_custom_field161
970
+ attribute_values['enterprise_custom_field161']
971
+ end
972
+
973
+ # Retrieve the Enterprise Custom Field 162 value
974
+ #
975
+ # @return Enterprise Custom Field 162 value
976
+ def enterprise_custom_field162
977
+ attribute_values['enterprise_custom_field162']
978
+ end
979
+
980
+ # Retrieve the Enterprise Custom Field 163 value
981
+ #
982
+ # @return Enterprise Custom Field 163 value
983
+ def enterprise_custom_field163
984
+ attribute_values['enterprise_custom_field163']
985
+ end
986
+
987
+ # Retrieve the Enterprise Custom Field 164 value
988
+ #
989
+ # @return Enterprise Custom Field 164 value
990
+ def enterprise_custom_field164
991
+ attribute_values['enterprise_custom_field164']
992
+ end
993
+
994
+ # Retrieve the Enterprise Custom Field 165 value
995
+ #
996
+ # @return Enterprise Custom Field 165 value
997
+ def enterprise_custom_field165
998
+ attribute_values['enterprise_custom_field165']
999
+ end
1000
+
1001
+ # Retrieve the Enterprise Custom Field 166 value
1002
+ #
1003
+ # @return Enterprise Custom Field 166 value
1004
+ def enterprise_custom_field166
1005
+ attribute_values['enterprise_custom_field166']
1006
+ end
1007
+
1008
+ # Retrieve the Enterprise Custom Field 167 value
1009
+ #
1010
+ # @return Enterprise Custom Field 167 value
1011
+ def enterprise_custom_field167
1012
+ attribute_values['enterprise_custom_field167']
1013
+ end
1014
+
1015
+ # Retrieve the Enterprise Custom Field 168 value
1016
+ #
1017
+ # @return Enterprise Custom Field 168 value
1018
+ def enterprise_custom_field168
1019
+ attribute_values['enterprise_custom_field168']
1020
+ end
1021
+
1022
+ # Retrieve the Enterprise Custom Field 169 value
1023
+ #
1024
+ # @return Enterprise Custom Field 169 value
1025
+ def enterprise_custom_field169
1026
+ attribute_values['enterprise_custom_field169']
1027
+ end
1028
+
1029
+ # Retrieve the Enterprise Custom Field 17 value
1030
+ #
1031
+ # @return Enterprise Custom Field 17 value
1032
+ def enterprise_custom_field17
1033
+ attribute_values['enterprise_custom_field17']
1034
+ end
1035
+
1036
+ # Retrieve the Enterprise Custom Field 170 value
1037
+ #
1038
+ # @return Enterprise Custom Field 170 value
1039
+ def enterprise_custom_field170
1040
+ attribute_values['enterprise_custom_field170']
1041
+ end
1042
+
1043
+ # Retrieve the Enterprise Custom Field 171 value
1044
+ #
1045
+ # @return Enterprise Custom Field 171 value
1046
+ def enterprise_custom_field171
1047
+ attribute_values['enterprise_custom_field171']
1048
+ end
1049
+
1050
+ # Retrieve the Enterprise Custom Field 172 value
1051
+ #
1052
+ # @return Enterprise Custom Field 172 value
1053
+ def enterprise_custom_field172
1054
+ attribute_values['enterprise_custom_field172']
1055
+ end
1056
+
1057
+ # Retrieve the Enterprise Custom Field 173 value
1058
+ #
1059
+ # @return Enterprise Custom Field 173 value
1060
+ def enterprise_custom_field173
1061
+ attribute_values['enterprise_custom_field173']
1062
+ end
1063
+
1064
+ # Retrieve the Enterprise Custom Field 174 value
1065
+ #
1066
+ # @return Enterprise Custom Field 174 value
1067
+ def enterprise_custom_field174
1068
+ attribute_values['enterprise_custom_field174']
1069
+ end
1070
+
1071
+ # Retrieve the Enterprise Custom Field 175 value
1072
+ #
1073
+ # @return Enterprise Custom Field 175 value
1074
+ def enterprise_custom_field175
1075
+ attribute_values['enterprise_custom_field175']
1076
+ end
1077
+
1078
+ # Retrieve the Enterprise Custom Field 176 value
1079
+ #
1080
+ # @return Enterprise Custom Field 176 value
1081
+ def enterprise_custom_field176
1082
+ attribute_values['enterprise_custom_field176']
1083
+ end
1084
+
1085
+ # Retrieve the Enterprise Custom Field 177 value
1086
+ #
1087
+ # @return Enterprise Custom Field 177 value
1088
+ def enterprise_custom_field177
1089
+ attribute_values['enterprise_custom_field177']
1090
+ end
1091
+
1092
+ # Retrieve the Enterprise Custom Field 178 value
1093
+ #
1094
+ # @return Enterprise Custom Field 178 value
1095
+ def enterprise_custom_field178
1096
+ attribute_values['enterprise_custom_field178']
1097
+ end
1098
+
1099
+ # Retrieve the Enterprise Custom Field 179 value
1100
+ #
1101
+ # @return Enterprise Custom Field 179 value
1102
+ def enterprise_custom_field179
1103
+ attribute_values['enterprise_custom_field179']
1104
+ end
1105
+
1106
+ # Retrieve the Enterprise Custom Field 18 value
1107
+ #
1108
+ # @return Enterprise Custom Field 18 value
1109
+ def enterprise_custom_field18
1110
+ attribute_values['enterprise_custom_field18']
1111
+ end
1112
+
1113
+ # Retrieve the Enterprise Custom Field 180 value
1114
+ #
1115
+ # @return Enterprise Custom Field 180 value
1116
+ def enterprise_custom_field180
1117
+ attribute_values['enterprise_custom_field180']
1118
+ end
1119
+
1120
+ # Retrieve the Enterprise Custom Field 181 value
1121
+ #
1122
+ # @return Enterprise Custom Field 181 value
1123
+ def enterprise_custom_field181
1124
+ attribute_values['enterprise_custom_field181']
1125
+ end
1126
+
1127
+ # Retrieve the Enterprise Custom Field 182 value
1128
+ #
1129
+ # @return Enterprise Custom Field 182 value
1130
+ def enterprise_custom_field182
1131
+ attribute_values['enterprise_custom_field182']
1132
+ end
1133
+
1134
+ # Retrieve the Enterprise Custom Field 183 value
1135
+ #
1136
+ # @return Enterprise Custom Field 183 value
1137
+ def enterprise_custom_field183
1138
+ attribute_values['enterprise_custom_field183']
1139
+ end
1140
+
1141
+ # Retrieve the Enterprise Custom Field 184 value
1142
+ #
1143
+ # @return Enterprise Custom Field 184 value
1144
+ def enterprise_custom_field184
1145
+ attribute_values['enterprise_custom_field184']
1146
+ end
1147
+
1148
+ # Retrieve the Enterprise Custom Field 185 value
1149
+ #
1150
+ # @return Enterprise Custom Field 185 value
1151
+ def enterprise_custom_field185
1152
+ attribute_values['enterprise_custom_field185']
1153
+ end
1154
+
1155
+ # Retrieve the Enterprise Custom Field 186 value
1156
+ #
1157
+ # @return Enterprise Custom Field 186 value
1158
+ def enterprise_custom_field186
1159
+ attribute_values['enterprise_custom_field186']
1160
+ end
1161
+
1162
+ # Retrieve the Enterprise Custom Field 187 value
1163
+ #
1164
+ # @return Enterprise Custom Field 187 value
1165
+ def enterprise_custom_field187
1166
+ attribute_values['enterprise_custom_field187']
1167
+ end
1168
+
1169
+ # Retrieve the Enterprise Custom Field 188 value
1170
+ #
1171
+ # @return Enterprise Custom Field 188 value
1172
+ def enterprise_custom_field188
1173
+ attribute_values['enterprise_custom_field188']
1174
+ end
1175
+
1176
+ # Retrieve the Enterprise Custom Field 189 value
1177
+ #
1178
+ # @return Enterprise Custom Field 189 value
1179
+ def enterprise_custom_field189
1180
+ attribute_values['enterprise_custom_field189']
1181
+ end
1182
+
1183
+ # Retrieve the Enterprise Custom Field 19 value
1184
+ #
1185
+ # @return Enterprise Custom Field 19 value
1186
+ def enterprise_custom_field19
1187
+ attribute_values['enterprise_custom_field19']
1188
+ end
1189
+
1190
+ # Retrieve the Enterprise Custom Field 190 value
1191
+ #
1192
+ # @return Enterprise Custom Field 190 value
1193
+ def enterprise_custom_field190
1194
+ attribute_values['enterprise_custom_field190']
1195
+ end
1196
+
1197
+ # Retrieve the Enterprise Custom Field 191 value
1198
+ #
1199
+ # @return Enterprise Custom Field 191 value
1200
+ def enterprise_custom_field191
1201
+ attribute_values['enterprise_custom_field191']
1202
+ end
1203
+
1204
+ # Retrieve the Enterprise Custom Field 192 value
1205
+ #
1206
+ # @return Enterprise Custom Field 192 value
1207
+ def enterprise_custom_field192
1208
+ attribute_values['enterprise_custom_field192']
1209
+ end
1210
+
1211
+ # Retrieve the Enterprise Custom Field 193 value
1212
+ #
1213
+ # @return Enterprise Custom Field 193 value
1214
+ def enterprise_custom_field193
1215
+ attribute_values['enterprise_custom_field193']
1216
+ end
1217
+
1218
+ # Retrieve the Enterprise Custom Field 194 value
1219
+ #
1220
+ # @return Enterprise Custom Field 194 value
1221
+ def enterprise_custom_field194
1222
+ attribute_values['enterprise_custom_field194']
1223
+ end
1224
+
1225
+ # Retrieve the Enterprise Custom Field 195 value
1226
+ #
1227
+ # @return Enterprise Custom Field 195 value
1228
+ def enterprise_custom_field195
1229
+ attribute_values['enterprise_custom_field195']
1230
+ end
1231
+
1232
+ # Retrieve the Enterprise Custom Field 196 value
1233
+ #
1234
+ # @return Enterprise Custom Field 196 value
1235
+ def enterprise_custom_field196
1236
+ attribute_values['enterprise_custom_field196']
1237
+ end
1238
+
1239
+ # Retrieve the Enterprise Custom Field 197 value
1240
+ #
1241
+ # @return Enterprise Custom Field 197 value
1242
+ def enterprise_custom_field197
1243
+ attribute_values['enterprise_custom_field197']
1244
+ end
1245
+
1246
+ # Retrieve the Enterprise Custom Field 198 value
1247
+ #
1248
+ # @return Enterprise Custom Field 198 value
1249
+ def enterprise_custom_field198
1250
+ attribute_values['enterprise_custom_field198']
1251
+ end
1252
+
1253
+ # Retrieve the Enterprise Custom Field 199 value
1254
+ #
1255
+ # @return Enterprise Custom Field 199 value
1256
+ def enterprise_custom_field199
1257
+ attribute_values['enterprise_custom_field199']
1258
+ end
1259
+
1260
+ # Retrieve the Enterprise Custom Field 2 value
1261
+ #
1262
+ # @return Enterprise Custom Field 2 value
1263
+ def enterprise_custom_field2
1264
+ attribute_values['enterprise_custom_field2']
1265
+ end
1266
+
1267
+ # Retrieve the Enterprise Custom Field 20 value
1268
+ #
1269
+ # @return Enterprise Custom Field 20 value
1270
+ def enterprise_custom_field20
1271
+ attribute_values['enterprise_custom_field20']
1272
+ end
1273
+
1274
+ # Retrieve the Enterprise Custom Field 200 value
1275
+ #
1276
+ # @return Enterprise Custom Field 200 value
1277
+ def enterprise_custom_field200
1278
+ attribute_values['enterprise_custom_field200']
1279
+ end
1280
+
1281
+ # Retrieve the Enterprise Custom Field 21 value
1282
+ #
1283
+ # @return Enterprise Custom Field 21 value
1284
+ def enterprise_custom_field21
1285
+ attribute_values['enterprise_custom_field21']
1286
+ end
1287
+
1288
+ # Retrieve the Enterprise Custom Field 22 value
1289
+ #
1290
+ # @return Enterprise Custom Field 22 value
1291
+ def enterprise_custom_field22
1292
+ attribute_values['enterprise_custom_field22']
1293
+ end
1294
+
1295
+ # Retrieve the Enterprise Custom Field 23 value
1296
+ #
1297
+ # @return Enterprise Custom Field 23 value
1298
+ def enterprise_custom_field23
1299
+ attribute_values['enterprise_custom_field23']
1300
+ end
1301
+
1302
+ # Retrieve the Enterprise Custom Field 24 value
1303
+ #
1304
+ # @return Enterprise Custom Field 24 value
1305
+ def enterprise_custom_field24
1306
+ attribute_values['enterprise_custom_field24']
1307
+ end
1308
+
1309
+ # Retrieve the Enterprise Custom Field 25 value
1310
+ #
1311
+ # @return Enterprise Custom Field 25 value
1312
+ def enterprise_custom_field25
1313
+ attribute_values['enterprise_custom_field25']
1314
+ end
1315
+
1316
+ # Retrieve the Enterprise Custom Field 26 value
1317
+ #
1318
+ # @return Enterprise Custom Field 26 value
1319
+ def enterprise_custom_field26
1320
+ attribute_values['enterprise_custom_field26']
1321
+ end
1322
+
1323
+ # Retrieve the Enterprise Custom Field 27 value
1324
+ #
1325
+ # @return Enterprise Custom Field 27 value
1326
+ def enterprise_custom_field27
1327
+ attribute_values['enterprise_custom_field27']
1328
+ end
1329
+
1330
+ # Retrieve the Enterprise Custom Field 28 value
1331
+ #
1332
+ # @return Enterprise Custom Field 28 value
1333
+ def enterprise_custom_field28
1334
+ attribute_values['enterprise_custom_field28']
1335
+ end
1336
+
1337
+ # Retrieve the Enterprise Custom Field 29 value
1338
+ #
1339
+ # @return Enterprise Custom Field 29 value
1340
+ def enterprise_custom_field29
1341
+ attribute_values['enterprise_custom_field29']
1342
+ end
1343
+
1344
+ # Retrieve the Enterprise Custom Field 3 value
1345
+ #
1346
+ # @return Enterprise Custom Field 3 value
1347
+ def enterprise_custom_field3
1348
+ attribute_values['enterprise_custom_field3']
1349
+ end
1350
+
1351
+ # Retrieve the Enterprise Custom Field 30 value
1352
+ #
1353
+ # @return Enterprise Custom Field 30 value
1354
+ def enterprise_custom_field30
1355
+ attribute_values['enterprise_custom_field30']
1356
+ end
1357
+
1358
+ # Retrieve the Enterprise Custom Field 31 value
1359
+ #
1360
+ # @return Enterprise Custom Field 31 value
1361
+ def enterprise_custom_field31
1362
+ attribute_values['enterprise_custom_field31']
1363
+ end
1364
+
1365
+ # Retrieve the Enterprise Custom Field 32 value
1366
+ #
1367
+ # @return Enterprise Custom Field 32 value
1368
+ def enterprise_custom_field32
1369
+ attribute_values['enterprise_custom_field32']
1370
+ end
1371
+
1372
+ # Retrieve the Enterprise Custom Field 33 value
1373
+ #
1374
+ # @return Enterprise Custom Field 33 value
1375
+ def enterprise_custom_field33
1376
+ attribute_values['enterprise_custom_field33']
1377
+ end
1378
+
1379
+ # Retrieve the Enterprise Custom Field 34 value
1380
+ #
1381
+ # @return Enterprise Custom Field 34 value
1382
+ def enterprise_custom_field34
1383
+ attribute_values['enterprise_custom_field34']
1384
+ end
1385
+
1386
+ # Retrieve the Enterprise Custom Field 35 value
1387
+ #
1388
+ # @return Enterprise Custom Field 35 value
1389
+ def enterprise_custom_field35
1390
+ attribute_values['enterprise_custom_field35']
1391
+ end
1392
+
1393
+ # Retrieve the Enterprise Custom Field 36 value
1394
+ #
1395
+ # @return Enterprise Custom Field 36 value
1396
+ def enterprise_custom_field36
1397
+ attribute_values['enterprise_custom_field36']
1398
+ end
1399
+
1400
+ # Retrieve the Enterprise Custom Field 37 value
1401
+ #
1402
+ # @return Enterprise Custom Field 37 value
1403
+ def enterprise_custom_field37
1404
+ attribute_values['enterprise_custom_field37']
1405
+ end
1406
+
1407
+ # Retrieve the Enterprise Custom Field 38 value
1408
+ #
1409
+ # @return Enterprise Custom Field 38 value
1410
+ def enterprise_custom_field38
1411
+ attribute_values['enterprise_custom_field38']
1412
+ end
1413
+
1414
+ # Retrieve the Enterprise Custom Field 39 value
1415
+ #
1416
+ # @return Enterprise Custom Field 39 value
1417
+ def enterprise_custom_field39
1418
+ attribute_values['enterprise_custom_field39']
1419
+ end
1420
+
1421
+ # Retrieve the Enterprise Custom Field 4 value
1422
+ #
1423
+ # @return Enterprise Custom Field 4 value
1424
+ def enterprise_custom_field4
1425
+ attribute_values['enterprise_custom_field4']
1426
+ end
1427
+
1428
+ # Retrieve the Enterprise Custom Field 40 value
1429
+ #
1430
+ # @return Enterprise Custom Field 40 value
1431
+ def enterprise_custom_field40
1432
+ attribute_values['enterprise_custom_field40']
1433
+ end
1434
+
1435
+ # Retrieve the Enterprise Custom Field 41 value
1436
+ #
1437
+ # @return Enterprise Custom Field 41 value
1438
+ def enterprise_custom_field41
1439
+ attribute_values['enterprise_custom_field41']
1440
+ end
1441
+
1442
+ # Retrieve the Enterprise Custom Field 42 value
1443
+ #
1444
+ # @return Enterprise Custom Field 42 value
1445
+ def enterprise_custom_field42
1446
+ attribute_values['enterprise_custom_field42']
1447
+ end
1448
+
1449
+ # Retrieve the Enterprise Custom Field 43 value
1450
+ #
1451
+ # @return Enterprise Custom Field 43 value
1452
+ def enterprise_custom_field43
1453
+ attribute_values['enterprise_custom_field43']
1454
+ end
1455
+
1456
+ # Retrieve the Enterprise Custom Field 44 value
1457
+ #
1458
+ # @return Enterprise Custom Field 44 value
1459
+ def enterprise_custom_field44
1460
+ attribute_values['enterprise_custom_field44']
1461
+ end
1462
+
1463
+ # Retrieve the Enterprise Custom Field 45 value
1464
+ #
1465
+ # @return Enterprise Custom Field 45 value
1466
+ def enterprise_custom_field45
1467
+ attribute_values['enterprise_custom_field45']
1468
+ end
1469
+
1470
+ # Retrieve the Enterprise Custom Field 46 value
1471
+ #
1472
+ # @return Enterprise Custom Field 46 value
1473
+ def enterprise_custom_field46
1474
+ attribute_values['enterprise_custom_field46']
1475
+ end
1476
+
1477
+ # Retrieve the Enterprise Custom Field 47 value
1478
+ #
1479
+ # @return Enterprise Custom Field 47 value
1480
+ def enterprise_custom_field47
1481
+ attribute_values['enterprise_custom_field47']
1482
+ end
1483
+
1484
+ # Retrieve the Enterprise Custom Field 48 value
1485
+ #
1486
+ # @return Enterprise Custom Field 48 value
1487
+ def enterprise_custom_field48
1488
+ attribute_values['enterprise_custom_field48']
1489
+ end
1490
+
1491
+ # Retrieve the Enterprise Custom Field 49 value
1492
+ #
1493
+ # @return Enterprise Custom Field 49 value
1494
+ def enterprise_custom_field49
1495
+ attribute_values['enterprise_custom_field49']
1496
+ end
1497
+
1498
+ # Retrieve the Enterprise Custom Field 5 value
1499
+ #
1500
+ # @return Enterprise Custom Field 5 value
1501
+ def enterprise_custom_field5
1502
+ attribute_values['enterprise_custom_field5']
1503
+ end
1504
+
1505
+ # Retrieve the Enterprise Custom Field 50 value
1506
+ #
1507
+ # @return Enterprise Custom Field 50 value
1508
+ def enterprise_custom_field50
1509
+ attribute_values['enterprise_custom_field50']
1510
+ end
1511
+
1512
+ # Retrieve the Enterprise Custom Field 51 value
1513
+ #
1514
+ # @return Enterprise Custom Field 51 value
1515
+ def enterprise_custom_field51
1516
+ attribute_values['enterprise_custom_field51']
1517
+ end
1518
+
1519
+ # Retrieve the Enterprise Custom Field 52 value
1520
+ #
1521
+ # @return Enterprise Custom Field 52 value
1522
+ def enterprise_custom_field52
1523
+ attribute_values['enterprise_custom_field52']
1524
+ end
1525
+
1526
+ # Retrieve the Enterprise Custom Field 53 value
1527
+ #
1528
+ # @return Enterprise Custom Field 53 value
1529
+ def enterprise_custom_field53
1530
+ attribute_values['enterprise_custom_field53']
1531
+ end
1532
+
1533
+ # Retrieve the Enterprise Custom Field 54 value
1534
+ #
1535
+ # @return Enterprise Custom Field 54 value
1536
+ def enterprise_custom_field54
1537
+ attribute_values['enterprise_custom_field54']
1538
+ end
1539
+
1540
+ # Retrieve the Enterprise Custom Field 55 value
1541
+ #
1542
+ # @return Enterprise Custom Field 55 value
1543
+ def enterprise_custom_field55
1544
+ attribute_values['enterprise_custom_field55']
1545
+ end
1546
+
1547
+ # Retrieve the Enterprise Custom Field 56 value
1548
+ #
1549
+ # @return Enterprise Custom Field 56 value
1550
+ def enterprise_custom_field56
1551
+ attribute_values['enterprise_custom_field56']
1552
+ end
1553
+
1554
+ # Retrieve the Enterprise Custom Field 57 value
1555
+ #
1556
+ # @return Enterprise Custom Field 57 value
1557
+ def enterprise_custom_field57
1558
+ attribute_values['enterprise_custom_field57']
1559
+ end
1560
+
1561
+ # Retrieve the Enterprise Custom Field 58 value
1562
+ #
1563
+ # @return Enterprise Custom Field 58 value
1564
+ def enterprise_custom_field58
1565
+ attribute_values['enterprise_custom_field58']
1566
+ end
1567
+
1568
+ # Retrieve the Enterprise Custom Field 59 value
1569
+ #
1570
+ # @return Enterprise Custom Field 59 value
1571
+ def enterprise_custom_field59
1572
+ attribute_values['enterprise_custom_field59']
1573
+ end
1574
+
1575
+ # Retrieve the Enterprise Custom Field 6 value
1576
+ #
1577
+ # @return Enterprise Custom Field 6 value
1578
+ def enterprise_custom_field6
1579
+ attribute_values['enterprise_custom_field6']
1580
+ end
1581
+
1582
+ # Retrieve the Enterprise Custom Field 60 value
1583
+ #
1584
+ # @return Enterprise Custom Field 60 value
1585
+ def enterprise_custom_field60
1586
+ attribute_values['enterprise_custom_field60']
1587
+ end
1588
+
1589
+ # Retrieve the Enterprise Custom Field 61 value
1590
+ #
1591
+ # @return Enterprise Custom Field 61 value
1592
+ def enterprise_custom_field61
1593
+ attribute_values['enterprise_custom_field61']
1594
+ end
1595
+
1596
+ # Retrieve the Enterprise Custom Field 62 value
1597
+ #
1598
+ # @return Enterprise Custom Field 62 value
1599
+ def enterprise_custom_field62
1600
+ attribute_values['enterprise_custom_field62']
1601
+ end
1602
+
1603
+ # Retrieve the Enterprise Custom Field 63 value
1604
+ #
1605
+ # @return Enterprise Custom Field 63 value
1606
+ def enterprise_custom_field63
1607
+ attribute_values['enterprise_custom_field63']
1608
+ end
1609
+
1610
+ # Retrieve the Enterprise Custom Field 64 value
1611
+ #
1612
+ # @return Enterprise Custom Field 64 value
1613
+ def enterprise_custom_field64
1614
+ attribute_values['enterprise_custom_field64']
1615
+ end
1616
+
1617
+ # Retrieve the Enterprise Custom Field 65 value
1618
+ #
1619
+ # @return Enterprise Custom Field 65 value
1620
+ def enterprise_custom_field65
1621
+ attribute_values['enterprise_custom_field65']
1622
+ end
1623
+
1624
+ # Retrieve the Enterprise Custom Field 66 value
1625
+ #
1626
+ # @return Enterprise Custom Field 66 value
1627
+ def enterprise_custom_field66
1628
+ attribute_values['enterprise_custom_field66']
1629
+ end
1630
+
1631
+ # Retrieve the Enterprise Custom Field 67 value
1632
+ #
1633
+ # @return Enterprise Custom Field 67 value
1634
+ def enterprise_custom_field67
1635
+ attribute_values['enterprise_custom_field67']
1636
+ end
1637
+
1638
+ # Retrieve the Enterprise Custom Field 68 value
1639
+ #
1640
+ # @return Enterprise Custom Field 68 value
1641
+ def enterprise_custom_field68
1642
+ attribute_values['enterprise_custom_field68']
1643
+ end
1644
+
1645
+ # Retrieve the Enterprise Custom Field 69 value
1646
+ #
1647
+ # @return Enterprise Custom Field 69 value
1648
+ def enterprise_custom_field69
1649
+ attribute_values['enterprise_custom_field69']
1650
+ end
1651
+
1652
+ # Retrieve the Enterprise Custom Field 7 value
1653
+ #
1654
+ # @return Enterprise Custom Field 7 value
1655
+ def enterprise_custom_field7
1656
+ attribute_values['enterprise_custom_field7']
1657
+ end
1658
+
1659
+ # Retrieve the Enterprise Custom Field 70 value
1660
+ #
1661
+ # @return Enterprise Custom Field 70 value
1662
+ def enterprise_custom_field70
1663
+ attribute_values['enterprise_custom_field70']
1664
+ end
1665
+
1666
+ # Retrieve the Enterprise Custom Field 71 value
1667
+ #
1668
+ # @return Enterprise Custom Field 71 value
1669
+ def enterprise_custom_field71
1670
+ attribute_values['enterprise_custom_field71']
1671
+ end
1672
+
1673
+ # Retrieve the Enterprise Custom Field 72 value
1674
+ #
1675
+ # @return Enterprise Custom Field 72 value
1676
+ def enterprise_custom_field72
1677
+ attribute_values['enterprise_custom_field72']
1678
+ end
1679
+
1680
+ # Retrieve the Enterprise Custom Field 73 value
1681
+ #
1682
+ # @return Enterprise Custom Field 73 value
1683
+ def enterprise_custom_field73
1684
+ attribute_values['enterprise_custom_field73']
1685
+ end
1686
+
1687
+ # Retrieve the Enterprise Custom Field 74 value
1688
+ #
1689
+ # @return Enterprise Custom Field 74 value
1690
+ def enterprise_custom_field74
1691
+ attribute_values['enterprise_custom_field74']
1692
+ end
1693
+
1694
+ # Retrieve the Enterprise Custom Field 75 value
1695
+ #
1696
+ # @return Enterprise Custom Field 75 value
1697
+ def enterprise_custom_field75
1698
+ attribute_values['enterprise_custom_field75']
1699
+ end
1700
+
1701
+ # Retrieve the Enterprise Custom Field 76 value
1702
+ #
1703
+ # @return Enterprise Custom Field 76 value
1704
+ def enterprise_custom_field76
1705
+ attribute_values['enterprise_custom_field76']
1706
+ end
1707
+
1708
+ # Retrieve the Enterprise Custom Field 77 value
1709
+ #
1710
+ # @return Enterprise Custom Field 77 value
1711
+ def enterprise_custom_field77
1712
+ attribute_values['enterprise_custom_field77']
1713
+ end
1714
+
1715
+ # Retrieve the Enterprise Custom Field 78 value
1716
+ #
1717
+ # @return Enterprise Custom Field 78 value
1718
+ def enterprise_custom_field78
1719
+ attribute_values['enterprise_custom_field78']
1720
+ end
1721
+
1722
+ # Retrieve the Enterprise Custom Field 79 value
1723
+ #
1724
+ # @return Enterprise Custom Field 79 value
1725
+ def enterprise_custom_field79
1726
+ attribute_values['enterprise_custom_field79']
1727
+ end
1728
+
1729
+ # Retrieve the Enterprise Custom Field 8 value
1730
+ #
1731
+ # @return Enterprise Custom Field 8 value
1732
+ def enterprise_custom_field8
1733
+ attribute_values['enterprise_custom_field8']
1734
+ end
1735
+
1736
+ # Retrieve the Enterprise Custom Field 80 value
1737
+ #
1738
+ # @return Enterprise Custom Field 80 value
1739
+ def enterprise_custom_field80
1740
+ attribute_values['enterprise_custom_field80']
1741
+ end
1742
+
1743
+ # Retrieve the Enterprise Custom Field 81 value
1744
+ #
1745
+ # @return Enterprise Custom Field 81 value
1746
+ def enterprise_custom_field81
1747
+ attribute_values['enterprise_custom_field81']
1748
+ end
1749
+
1750
+ # Retrieve the Enterprise Custom Field 82 value
1751
+ #
1752
+ # @return Enterprise Custom Field 82 value
1753
+ def enterprise_custom_field82
1754
+ attribute_values['enterprise_custom_field82']
1755
+ end
1756
+
1757
+ # Retrieve the Enterprise Custom Field 83 value
1758
+ #
1759
+ # @return Enterprise Custom Field 83 value
1760
+ def enterprise_custom_field83
1761
+ attribute_values['enterprise_custom_field83']
1762
+ end
1763
+
1764
+ # Retrieve the Enterprise Custom Field 84 value
1765
+ #
1766
+ # @return Enterprise Custom Field 84 value
1767
+ def enterprise_custom_field84
1768
+ attribute_values['enterprise_custom_field84']
1769
+ end
1770
+
1771
+ # Retrieve the Enterprise Custom Field 85 value
1772
+ #
1773
+ # @return Enterprise Custom Field 85 value
1774
+ def enterprise_custom_field85
1775
+ attribute_values['enterprise_custom_field85']
1776
+ end
1777
+
1778
+ # Retrieve the Enterprise Custom Field 86 value
1779
+ #
1780
+ # @return Enterprise Custom Field 86 value
1781
+ def enterprise_custom_field86
1782
+ attribute_values['enterprise_custom_field86']
1783
+ end
1784
+
1785
+ # Retrieve the Enterprise Custom Field 87 value
1786
+ #
1787
+ # @return Enterprise Custom Field 87 value
1788
+ def enterprise_custom_field87
1789
+ attribute_values['enterprise_custom_field87']
1790
+ end
1791
+
1792
+ # Retrieve the Enterprise Custom Field 88 value
1793
+ #
1794
+ # @return Enterprise Custom Field 88 value
1795
+ def enterprise_custom_field88
1796
+ attribute_values['enterprise_custom_field88']
1797
+ end
1798
+
1799
+ # Retrieve the Enterprise Custom Field 89 value
1800
+ #
1801
+ # @return Enterprise Custom Field 89 value
1802
+ def enterprise_custom_field89
1803
+ attribute_values['enterprise_custom_field89']
1804
+ end
1805
+
1806
+ # Retrieve the Enterprise Custom Field 9 value
1807
+ #
1808
+ # @return Enterprise Custom Field 9 value
1809
+ def enterprise_custom_field9
1810
+ attribute_values['enterprise_custom_field9']
1811
+ end
1812
+
1813
+ # Retrieve the Enterprise Custom Field 90 value
1814
+ #
1815
+ # @return Enterprise Custom Field 90 value
1816
+ def enterprise_custom_field90
1817
+ attribute_values['enterprise_custom_field90']
1818
+ end
1819
+
1820
+ # Retrieve the Enterprise Custom Field 91 value
1821
+ #
1822
+ # @return Enterprise Custom Field 91 value
1823
+ def enterprise_custom_field91
1824
+ attribute_values['enterprise_custom_field91']
1825
+ end
1826
+
1827
+ # Retrieve the Enterprise Custom Field 92 value
1828
+ #
1829
+ # @return Enterprise Custom Field 92 value
1830
+ def enterprise_custom_field92
1831
+ attribute_values['enterprise_custom_field92']
1832
+ end
1833
+
1834
+ # Retrieve the Enterprise Custom Field 93 value
1835
+ #
1836
+ # @return Enterprise Custom Field 93 value
1837
+ def enterprise_custom_field93
1838
+ attribute_values['enterprise_custom_field93']
1839
+ end
1840
+
1841
+ # Retrieve the Enterprise Custom Field 94 value
1842
+ #
1843
+ # @return Enterprise Custom Field 94 value
1844
+ def enterprise_custom_field94
1845
+ attribute_values['enterprise_custom_field94']
1846
+ end
1847
+
1848
+ # Retrieve the Enterprise Custom Field 95 value
1849
+ #
1850
+ # @return Enterprise Custom Field 95 value
1851
+ def enterprise_custom_field95
1852
+ attribute_values['enterprise_custom_field95']
1853
+ end
1854
+
1855
+ # Retrieve the Enterprise Custom Field 96 value
1856
+ #
1857
+ # @return Enterprise Custom Field 96 value
1858
+ def enterprise_custom_field96
1859
+ attribute_values['enterprise_custom_field96']
1860
+ end
1861
+
1862
+ # Retrieve the Enterprise Custom Field 97 value
1863
+ #
1864
+ # @return Enterprise Custom Field 97 value
1865
+ def enterprise_custom_field97
1866
+ attribute_values['enterprise_custom_field97']
1867
+ end
1868
+
1869
+ # Retrieve the Enterprise Custom Field 98 value
1870
+ #
1871
+ # @return Enterprise Custom Field 98 value
1872
+ def enterprise_custom_field98
1873
+ attribute_values['enterprise_custom_field98']
1874
+ end
1875
+
1876
+ # Retrieve the Enterprise Custom Field 99 value
1877
+ #
1878
+ # @return Enterprise Custom Field 99 value
1879
+ def enterprise_custom_field99
1880
+ attribute_values['enterprise_custom_field99']
1881
+ end
1882
+
1883
+ # Retrieve the Export Flag value
1884
+ #
1885
+ # @return Export Flag value
1886
+ def export_flag
1887
+ get_boolean_value(attribute_values['export_flag'])
1888
+ end
1889
+
1890
+ # Retrieve the Extended Creation Date value
1891
+ #
1892
+ # @return Extended Creation Date value
1893
+ def extended_creation_date
1894
+ get_date_value(attribute_values['extended_creation_date'])
1895
+ end
1896
+
1897
+ # Retrieve the File Application value
1898
+ #
1899
+ # @return File Application value
1900
+ def file_application
1901
+ attribute_values['file_application']
1902
+ end
1903
+
1904
+ # Retrieve the File Type value
1905
+ #
1906
+ # @return File Type value
1907
+ def file_type
1908
+ attribute_values['file_type']
1909
+ end
1910
+
1911
+ # Retrieve the Finish Date value
1912
+ #
1913
+ # @return Finish Date value
1914
+ def finish_date
1915
+ get_date_value(attribute_values['finish_date'])
1916
+ end
1917
+
1918
+ # Retrieve the Finish Variance value
1919
+ #
1920
+ # @return Finish Variance value
1921
+ def finish_variance
1922
+ get_duration_value(attribute_values['finish_variance'])
1923
+ end
1924
+
1925
+ # Retrieve the Fiscal Year Start value
1926
+ #
1927
+ # @return Fiscal Year Start value
1928
+ def fiscal_year_start
1929
+ get_boolean_value(attribute_values['fiscal_year_start'])
1930
+ end
1931
+
1932
+ # Retrieve the Fiscal Year Start Month value
1933
+ #
1934
+ # @return Fiscal Year Start Month value
1935
+ def fiscal_year_start_month
1936
+ get_integer_value(attribute_values['fiscal_year_start_month'])
1937
+ end
1938
+
1939
+ # Retrieve the Full Application Name value
1940
+ #
1941
+ # @return Full Application Name value
1942
+ def full_application_name
1943
+ attribute_values['full_application_name']
1944
+ end
1945
+
1946
+ # Retrieve the GUID value
1947
+ #
1948
+ # @return GUID value
1949
+ def guid
1950
+ attribute_values['guid']
1951
+ end
1952
+
1953
+ # Retrieve the Honor Constraints value
1954
+ #
1955
+ # @return Honor Constraints value
1956
+ def honor_constraints
1957
+ get_boolean_value(attribute_values['honor_constraints'])
1958
+ end
1959
+
1960
+ # Retrieve the Hyperlink Base value
1961
+ #
1962
+ # @return Hyperlink Base value
1963
+ def hyperlink_base
1964
+ attribute_values['hyperlink_base']
1965
+ end
1966
+
1967
+ # Retrieve the Inserted Projects Like Summary value
1968
+ #
1969
+ # @return Inserted Projects Like Summary value
1970
+ def inserted_projects_like_summary
1971
+ get_boolean_value(attribute_values['inserted_projects_like_summary'])
1972
+ end
1973
+
1974
+ # Retrieve the Keywords value
1975
+ #
1976
+ # @return Keywords value
1977
+ def keywords
1978
+ attribute_values['keywords']
1979
+ end
1980
+
1981
+ # Retrieve the Language value
1982
+ #
1983
+ # @return Language value
1984
+ def language
1985
+ attribute_values['language']
1986
+ end
1987
+
1988
+ # Retrieve the Last Printed value
1989
+ #
1990
+ # @return Last Printed value
1991
+ def lastprinted
1992
+ get_date_value(attribute_values['lastprinted'])
1993
+ end
1994
+
1995
+ # Retrieve the Last Author value
1996
+ #
1997
+ # @return Last Author value
1998
+ def last_author
1999
+ attribute_values['last_author']
2000
+ end
2001
+
2002
+ # Retrieve the Last Saved value
2003
+ #
2004
+ # @return Last Saved value
2005
+ def last_saved
2006
+ get_date_value(attribute_values['last_saved'])
2007
+ end
2008
+
2009
+ # Retrieve the Manager value
2010
+ #
2011
+ # @return Manager value
2012
+ def manager
2013
+ attribute_values['manager']
2014
+ end
2015
+
2016
+ # Retrieve the Microsoft Project Server URL value
2017
+ #
2018
+ # @return Microsoft Project Server URL value
2019
+ def microsoft_project_server_url
2020
+ get_boolean_value(attribute_values['microsoft_project_server_url'])
2021
+ end
2022
+
2023
+ # Retrieve the Minutes per Day value
2024
+ #
2025
+ # @return Minutes per Day value
2026
+ def minutes_per_day
2027
+ get_integer_value(attribute_values['minutes_per_day'])
2028
+ end
2029
+
2030
+ # Retrieve the Minutes per Week value
2031
+ #
2032
+ # @return Minutes per Week value
2033
+ def minutes_per_week
2034
+ get_integer_value(attribute_values['minutes_per_week'])
2035
+ end
2036
+
2037
+ # Retrieve the Move Completed Ends Back value
2038
+ #
2039
+ # @return Move Completed Ends Back value
2040
+ def move_completed_ends_back
2041
+ get_boolean_value(attribute_values['move_completed_ends_back'])
2042
+ end
2043
+
2044
+ # Retrieve the Move Completed Ends Forward value
2045
+ #
2046
+ # @return Move Completed Ends Forward value
2047
+ def move_completed_ends_forward
2048
+ get_boolean_value(attribute_values['move_completed_ends_forward'])
2049
+ end
2050
+
2051
+ # Retrieve the Move Remaining Starts Back value
2052
+ #
2053
+ # @return Move Remaining Starts Back value
2054
+ def move_remaining_starts_back
2055
+ get_boolean_value(attribute_values['move_remaining_starts_back'])
2056
+ end
2057
+
2058
+ # Retrieve the Move Remaining Starts Forward value
2059
+ #
2060
+ # @return Move Remaining Starts Forward value
2061
+ def move_remaining_starts_forward
2062
+ get_boolean_value(attribute_values['move_remaining_starts_forward'])
2063
+ end
2064
+
2065
+ # Retrieve the MPP File Type value
2066
+ #
2067
+ # @return MPP File Type value
2068
+ def mpp_file_type
2069
+ get_integer_value(attribute_values['mpp_file_type'])
2070
+ end
2071
+
2072
+ # Retrieve the MPX Code Page value
2073
+ #
2074
+ # @return MPX Code Page value
2075
+ def mpx_code_page
2076
+ attribute_values['mpx_code_page']
2077
+ end
2078
+
2079
+ # Retrieve the MPX Delimiter value
2080
+ #
2081
+ # @return MPX Delimiter value
2082
+ def mpx_delimiter
2083
+ attribute_values['mpx_delimiter']
2084
+ end
2085
+
2086
+ # Retrieve the MPX File Version value
2087
+ #
2088
+ # @return MPX File Version value
2089
+ def mpx_file_version
2090
+ attribute_values['mpx_file_version']
2091
+ end
2092
+
2093
+ # Retrieve the MPX Program Name value
2094
+ #
2095
+ # @return MPX Program Name value
2096
+ def mpx_program_name
2097
+ attribute_values['mpx_program_name']
2098
+ end
2099
+
2100
+ # Retrieve the Multiple Critical Paths value
2101
+ #
2102
+ # @return Multiple Critical Paths value
2103
+ def multiple_critical_paths
2104
+ get_boolean_value(attribute_values['multiple_critical_paths'])
2105
+ end
2106
+
2107
+ # Retrieve the Must Finish By value
2108
+ #
2109
+ # @return Must Finish By value
2110
+ def must_finish_by
2111
+ get_date_value(attribute_values['must_finish_by'])
2112
+ end
2113
+
2114
+ # Retrieve the Name value
2115
+ #
2116
+ # @return Name value
2117
+ def name
2118
+ attribute_values['name']
2119
+ end
2120
+
2121
+ # Retrieve the New Tasks Are Manual value
2122
+ #
2123
+ # @return New Tasks Are Manual value
2124
+ def new_tasks_are_manual
2125
+ get_boolean_value(attribute_values['new_tasks_are_manual'])
2126
+ end
2127
+
2128
+ # Retrieve the New Tasks Are Effort Driven value
2129
+ #
2130
+ # @return New Tasks Are Effort Driven value
2131
+ def new_tasks_effort_driven
2132
+ get_boolean_value(attribute_values['new_tasks_effort_driven'])
2133
+ end
2134
+
2135
+ # Retrieve the New Tasks Estimated value
2136
+ #
2137
+ # @return New Tasks Estimated value
2138
+ def new_tasks_estimated
2139
+ get_boolean_value(attribute_values['new_tasks_estimated'])
2140
+ end
2141
+
2142
+ # Retrieve the New Tasj Start Is Project Start value
2143
+ #
2144
+ # @return New Tasj Start Is Project Start value
2145
+ def new_task_start_is_project_start
2146
+ get_boolean_value(attribute_values['new_task_start_is_project_start'])
2147
+ end
2148
+
2149
+ # Retrieve the Percentage Complete value
2150
+ #
2151
+ # @return Percentage Complete value
2152
+ def percentage_complete
2153
+ get_float_value(attribute_values['percentage_complete'])
2154
+ end
2155
+
2156
+ # Retrieve the Planned Start value
2157
+ #
2158
+ # @return Planned Start value
2159
+ def planned_start
2160
+ get_date_value(attribute_values['planned_start'])
2161
+ end
2162
+
2163
+ # Retrieve the PM Text value
2164
+ #
2165
+ # @return PM Text value
2166
+ def pm_text
2167
+ attribute_values['pm_text']
2168
+ end
2169
+
2170
+ # Retrieve the Presentation Format value
2171
+ #
2172
+ # @return Presentation Format value
2173
+ def presentation_format
2174
+ attribute_values['presentation_format']
2175
+ end
2176
+
2177
+ # Retrieve the Project Externally Edited value
2178
+ #
2179
+ # @return Project Externally Edited value
2180
+ def project_externally_edited
2181
+ get_boolean_value(attribute_values['project_externally_edited'])
2182
+ end
2183
+
2184
+ # Retrieve the Project File Path value
2185
+ #
2186
+ # @return Project File Path value
2187
+ def project_file_path
2188
+ attribute_values['project_file_path']
2189
+ end
2190
+
2191
+ # Retrieve the Project ID value
2192
+ #
2193
+ # @return Project ID value
2194
+ def project_id
2195
+ attribute_values['project_id']
2196
+ end
2197
+
2198
+ # Retrieve the Project Title value
2199
+ #
2200
+ # @return Project Title value
2201
+ def project_title
2202
+ attribute_values['project_title']
2203
+ end
2204
+
2205
+ # Retrieve the Remove File Properties value
2206
+ #
2207
+ # @return Remove File Properties value
2208
+ def remove_file_properties
2209
+ get_boolean_value(attribute_values['remove_file_properties'])
2210
+ end
2211
+
2212
+ # Retrieve the Revision value
2213
+ #
2214
+ # @return Revision value
2215
+ def revision
2216
+ get_integer_value(attribute_values['revision'])
2217
+ end
2218
+
2219
+ # Retrieve the Scheduled Finish value
2220
+ #
2221
+ # @return Scheduled Finish value
2222
+ def scheduled_finish
2223
+ get_date_value(attribute_values['scheduled_finish'])
2224
+ end
2225
+
2226
+ # Retrieve the Schedule From value
2227
+ #
2228
+ # @return Schedule From value
2229
+ def schedule_from
2230
+ attribute_values['schedule_from']
2231
+ end
2232
+
2233
+ # Retrieve the Short Application Name value
2234
+ #
2235
+ # @return Short Application Name value
2236
+ def short_application_name
2237
+ attribute_values['short_application_name']
2238
+ end
2239
+
2240
+ # Retrieve the Show Project Summary Task value
2241
+ #
2242
+ # @return Show Project Summary Task value
2243
+ def show_project_summary_task
2244
+ get_boolean_value(attribute_values['show_project_summary_task'])
2245
+ end
2246
+
2247
+ # Retrieve the Split In Progress Tasks value
2248
+ #
2249
+ # @return Split In Progress Tasks value
2250
+ def split_in_progress_tasks
2251
+ get_boolean_value(attribute_values['split_in_progress_tasks'])
2252
+ end
2253
+
2254
+ # Retrieve the Spread Actual Cost value
2255
+ #
2256
+ # @return Spread Actual Cost value
2257
+ def spread_actual_cost
2258
+ get_boolean_value(attribute_values['spread_actual_cost'])
2259
+ end
2260
+
2261
+ # Retrieve the Spread Percent Complete value
2262
+ #
2263
+ # @return Spread Percent Complete value
2264
+ def spread_percent_complete
2265
+ get_boolean_value(attribute_values['spread_percent_complete'])
2266
+ end
2267
+
2268
+ # Retrieve the Start Date value
2269
+ #
2270
+ # @return Start Date value
2271
+ def start_date
2272
+ get_date_value(attribute_values['start_date'])
2273
+ end
2274
+
2275
+ # Retrieve the Start Variance value
2276
+ #
2277
+ # @return Start Variance value
2278
+ def start_variance
2279
+ get_duration_value(attribute_values['start_variance'])
2280
+ end
2281
+
2282
+ # Retrieve the Status Date value
2283
+ #
2284
+ # @return Status Date value
2285
+ def status_date
2286
+ get_date_value(attribute_values['status_date'])
2287
+ end
2288
+
2289
+ # Retrieve the Subject value
2290
+ #
2291
+ # @return Subject value
2292
+ def subject
2293
+ attribute_values['subject']
2294
+ end
2295
+
2296
+ # Retrieve the Template value
2297
+ #
2298
+ # @return Template value
2299
+ def template
2300
+ attribute_values['template']
2301
+ end
2302
+
2303
+ # Retrieve the Thousands Separator value
2304
+ #
2305
+ # @return Thousands Separator value
2306
+ def thousands_separator
2307
+ attribute_values['thousands_separator']
2308
+ end
2309
+
2310
+ # Retrieve the Time Format value
2311
+ #
2312
+ # @return Time Format value
2313
+ def time_format
2314
+ attribute_values['time_format']
2315
+ end
2316
+
2317
+ # Retrieve the Time Separator value
2318
+ #
2319
+ # @return Time Separator value
2320
+ def time_separator
2321
+ attribute_values['time_separator']
2322
+ end
2323
+
2324
+ # Retrieve the Unique ID value
2325
+ #
2326
+ # @return Unique ID value
2327
+ def unique_id
2328
+ get_integer_value(attribute_values['unique_id'])
2329
+ end
2330
+
2331
+ # Retrieve the Updating Task Status Updates Resource Status value
2332
+ #
2333
+ # @return Updating Task Status Updates Resource Status value
2334
+ def updating_task_status_updates_resource_status
2335
+ get_boolean_value(attribute_values['updating_task_status_updates_resource_status'])
2336
+ end
2337
+
2338
+ # Retrieve the Week Start Day value
2339
+ #
2340
+ # @return Week Start Day value
2341
+ def week_start_day
2342
+ attribute_values['week_start_day']
2343
+ end
2344
+
2345
+ # Retrieve the Work value
2346
+ #
2347
+ # @return Work value
2348
+ def work
2349
+ get_duration_value(attribute_values['work'])
2350
+ end
2351
+
2352
+ # Retrieve the Work 2 value
2353
+ #
2354
+ # @return Work 2 value
2355
+ def work2
2356
+ get_float_value(attribute_values['work2'])
2357
+ end
2358
+
2359
+ ATTRIBUTE_TYPES = {
2360
+ 'actuals_in_sync' => :boolean,
2361
+ 'actual_cost' => :currency,
2362
+ 'actual_duration' => :duration,
2363
+ 'actual_finish' => :date,
2364
+ 'actual_start' => :date,
2365
+ 'actual_work' => :work,
2366
+ 'admin_project' => :boolean,
2367
+ 'am_text' => :string,
2368
+ 'application_version' => :integer,
2369
+ 'author' => :string,
2370
+ 'autofilter' => :boolean,
2371
+ 'auto_add_new_resources_and_tasks' => :boolean,
2372
+ 'auto_link' => :boolean,
2373
+ 'bar_text_date_format' => :project_date_format,
2374
+ 'baseline10_date' => :date,
2375
+ 'baseline1_date' => :date,
2376
+ 'baseline2_date' => :date,
2377
+ 'baseline3_date' => :date,
2378
+ 'baseline4_date' => :date,
2379
+ 'baseline5_date' => :date,
2380
+ 'baseline6_date' => :date,
2381
+ 'baseline7_date' => :date,
2382
+ 'baseline8_date' => :date,
2383
+ 'baseline9_date' => :date,
2384
+ 'baseline_cost' => :currency,
2385
+ 'baseline_date' => :date,
2386
+ 'baseline_duration' => :duration,
2387
+ 'baseline_finish' => :date,
2388
+ 'baseline_for_earned_value' => :integer,
2389
+ 'baseline_project_unique_id' => :integer,
2390
+ 'baseline_start' => :date,
2391
+ 'baseline_work' => :work,
2392
+ 'category' => :string,
2393
+ 'comments' => :string,
2394
+ 'company' => :string,
2395
+ 'content_status' => :string,
2396
+ 'content_type' => :string,
2397
+ 'cost' => :currency,
2398
+ 'creation_date' => :date,
2399
+ 'critical_activity_type' => :critical_activity_type,
2400
+ 'critical_slack_limit' => :integer,
2401
+ 'currency_code' => :string,
2402
+ 'currency_digits' => :integer,
2403
+ 'currency_symbol' => :string,
2404
+ 'currency_symbol_position' => :currency_symbol_position,
2405
+ 'current_date' => :date,
2406
+ 'custom_properties' => :map,
2407
+ 'date_format' => :project_date_format,
2408
+ 'date_order' => :date_order,
2409
+ 'date_separator' => :char,
2410
+ 'days_per_month' => :integer,
2411
+ 'decimal_separator' => :char,
2412
+ 'default_calendar_name' => :string,
2413
+ 'default_duration_is_fixed' => :boolean,
2414
+ 'default_duration_units' => :time_units,
2415
+ 'default_end_time' => :date,
2416
+ 'default_fixed_cost_accrual' => :accrue,
2417
+ 'default_overtime_rate' => :rate,
2418
+ 'default_standard_rate' => :rate,
2419
+ 'default_start_time' => :date,
2420
+ 'default_task_earned_value_method' => :earned_value_method,
2421
+ 'default_task_type' => :task_type,
2422
+ 'default_work_units' => :time_units,
2423
+ 'document_version' => :string,
2424
+ 'duration' => :duration,
2425
+ 'earned_value_method' => :earned_value_method,
2426
+ 'editable_actual_costs' => :boolean,
2427
+ 'editing_time' => :integer,
2428
+ 'enterprise_custom_field1' => :binary,
2429
+ 'enterprise_custom_field10' => :binary,
2430
+ 'enterprise_custom_field100' => :binary,
2431
+ 'enterprise_custom_field101' => :binary,
2432
+ 'enterprise_custom_field102' => :binary,
2433
+ 'enterprise_custom_field103' => :binary,
2434
+ 'enterprise_custom_field104' => :binary,
2435
+ 'enterprise_custom_field105' => :binary,
2436
+ 'enterprise_custom_field106' => :binary,
2437
+ 'enterprise_custom_field107' => :binary,
2438
+ 'enterprise_custom_field108' => :binary,
2439
+ 'enterprise_custom_field109' => :binary,
2440
+ 'enterprise_custom_field11' => :binary,
2441
+ 'enterprise_custom_field110' => :binary,
2442
+ 'enterprise_custom_field111' => :binary,
2443
+ 'enterprise_custom_field112' => :binary,
2444
+ 'enterprise_custom_field113' => :binary,
2445
+ 'enterprise_custom_field114' => :binary,
2446
+ 'enterprise_custom_field115' => :binary,
2447
+ 'enterprise_custom_field116' => :binary,
2448
+ 'enterprise_custom_field117' => :binary,
2449
+ 'enterprise_custom_field118' => :binary,
2450
+ 'enterprise_custom_field119' => :binary,
2451
+ 'enterprise_custom_field12' => :binary,
2452
+ 'enterprise_custom_field120' => :binary,
2453
+ 'enterprise_custom_field121' => :binary,
2454
+ 'enterprise_custom_field122' => :binary,
2455
+ 'enterprise_custom_field123' => :binary,
2456
+ 'enterprise_custom_field124' => :binary,
2457
+ 'enterprise_custom_field125' => :binary,
2458
+ 'enterprise_custom_field126' => :binary,
2459
+ 'enterprise_custom_field127' => :binary,
2460
+ 'enterprise_custom_field128' => :binary,
2461
+ 'enterprise_custom_field129' => :binary,
2462
+ 'enterprise_custom_field13' => :binary,
2463
+ 'enterprise_custom_field130' => :binary,
2464
+ 'enterprise_custom_field131' => :binary,
2465
+ 'enterprise_custom_field132' => :binary,
2466
+ 'enterprise_custom_field133' => :binary,
2467
+ 'enterprise_custom_field134' => :binary,
2468
+ 'enterprise_custom_field135' => :binary,
2469
+ 'enterprise_custom_field136' => :binary,
2470
+ 'enterprise_custom_field137' => :binary,
2471
+ 'enterprise_custom_field138' => :binary,
2472
+ 'enterprise_custom_field139' => :binary,
2473
+ 'enterprise_custom_field14' => :binary,
2474
+ 'enterprise_custom_field140' => :binary,
2475
+ 'enterprise_custom_field141' => :binary,
2476
+ 'enterprise_custom_field142' => :binary,
2477
+ 'enterprise_custom_field143' => :binary,
2478
+ 'enterprise_custom_field144' => :binary,
2479
+ 'enterprise_custom_field145' => :binary,
2480
+ 'enterprise_custom_field146' => :binary,
2481
+ 'enterprise_custom_field147' => :binary,
2482
+ 'enterprise_custom_field148' => :binary,
2483
+ 'enterprise_custom_field149' => :binary,
2484
+ 'enterprise_custom_field15' => :binary,
2485
+ 'enterprise_custom_field150' => :binary,
2486
+ 'enterprise_custom_field151' => :binary,
2487
+ 'enterprise_custom_field152' => :binary,
2488
+ 'enterprise_custom_field153' => :binary,
2489
+ 'enterprise_custom_field154' => :binary,
2490
+ 'enterprise_custom_field155' => :binary,
2491
+ 'enterprise_custom_field156' => :binary,
2492
+ 'enterprise_custom_field157' => :binary,
2493
+ 'enterprise_custom_field158' => :binary,
2494
+ 'enterprise_custom_field159' => :binary,
2495
+ 'enterprise_custom_field16' => :binary,
2496
+ 'enterprise_custom_field160' => :binary,
2497
+ 'enterprise_custom_field161' => :binary,
2498
+ 'enterprise_custom_field162' => :binary,
2499
+ 'enterprise_custom_field163' => :binary,
2500
+ 'enterprise_custom_field164' => :binary,
2501
+ 'enterprise_custom_field165' => :binary,
2502
+ 'enterprise_custom_field166' => :binary,
2503
+ 'enterprise_custom_field167' => :binary,
2504
+ 'enterprise_custom_field168' => :binary,
2505
+ 'enterprise_custom_field169' => :binary,
2506
+ 'enterprise_custom_field17' => :binary,
2507
+ 'enterprise_custom_field170' => :binary,
2508
+ 'enterprise_custom_field171' => :binary,
2509
+ 'enterprise_custom_field172' => :binary,
2510
+ 'enterprise_custom_field173' => :binary,
2511
+ 'enterprise_custom_field174' => :binary,
2512
+ 'enterprise_custom_field175' => :binary,
2513
+ 'enterprise_custom_field176' => :binary,
2514
+ 'enterprise_custom_field177' => :binary,
2515
+ 'enterprise_custom_field178' => :binary,
2516
+ 'enterprise_custom_field179' => :binary,
2517
+ 'enterprise_custom_field18' => :binary,
2518
+ 'enterprise_custom_field180' => :binary,
2519
+ 'enterprise_custom_field181' => :binary,
2520
+ 'enterprise_custom_field182' => :binary,
2521
+ 'enterprise_custom_field183' => :binary,
2522
+ 'enterprise_custom_field184' => :binary,
2523
+ 'enterprise_custom_field185' => :binary,
2524
+ 'enterprise_custom_field186' => :binary,
2525
+ 'enterprise_custom_field187' => :binary,
2526
+ 'enterprise_custom_field188' => :binary,
2527
+ 'enterprise_custom_field189' => :binary,
2528
+ 'enterprise_custom_field19' => :binary,
2529
+ 'enterprise_custom_field190' => :binary,
2530
+ 'enterprise_custom_field191' => :binary,
2531
+ 'enterprise_custom_field192' => :binary,
2532
+ 'enterprise_custom_field193' => :binary,
2533
+ 'enterprise_custom_field194' => :binary,
2534
+ 'enterprise_custom_field195' => :binary,
2535
+ 'enterprise_custom_field196' => :binary,
2536
+ 'enterprise_custom_field197' => :binary,
2537
+ 'enterprise_custom_field198' => :binary,
2538
+ 'enterprise_custom_field199' => :binary,
2539
+ 'enterprise_custom_field2' => :binary,
2540
+ 'enterprise_custom_field20' => :binary,
2541
+ 'enterprise_custom_field200' => :binary,
2542
+ 'enterprise_custom_field21' => :binary,
2543
+ 'enterprise_custom_field22' => :binary,
2544
+ 'enterprise_custom_field23' => :binary,
2545
+ 'enterprise_custom_field24' => :binary,
2546
+ 'enterprise_custom_field25' => :binary,
2547
+ 'enterprise_custom_field26' => :binary,
2548
+ 'enterprise_custom_field27' => :binary,
2549
+ 'enterprise_custom_field28' => :binary,
2550
+ 'enterprise_custom_field29' => :binary,
2551
+ 'enterprise_custom_field3' => :binary,
2552
+ 'enterprise_custom_field30' => :binary,
2553
+ 'enterprise_custom_field31' => :binary,
2554
+ 'enterprise_custom_field32' => :binary,
2555
+ 'enterprise_custom_field33' => :binary,
2556
+ 'enterprise_custom_field34' => :binary,
2557
+ 'enterprise_custom_field35' => :binary,
2558
+ 'enterprise_custom_field36' => :binary,
2559
+ 'enterprise_custom_field37' => :binary,
2560
+ 'enterprise_custom_field38' => :binary,
2561
+ 'enterprise_custom_field39' => :binary,
2562
+ 'enterprise_custom_field4' => :binary,
2563
+ 'enterprise_custom_field40' => :binary,
2564
+ 'enterprise_custom_field41' => :binary,
2565
+ 'enterprise_custom_field42' => :binary,
2566
+ 'enterprise_custom_field43' => :binary,
2567
+ 'enterprise_custom_field44' => :binary,
2568
+ 'enterprise_custom_field45' => :binary,
2569
+ 'enterprise_custom_field46' => :binary,
2570
+ 'enterprise_custom_field47' => :binary,
2571
+ 'enterprise_custom_field48' => :binary,
2572
+ 'enterprise_custom_field49' => :binary,
2573
+ 'enterprise_custom_field5' => :binary,
2574
+ 'enterprise_custom_field50' => :binary,
2575
+ 'enterprise_custom_field51' => :binary,
2576
+ 'enterprise_custom_field52' => :binary,
2577
+ 'enterprise_custom_field53' => :binary,
2578
+ 'enterprise_custom_field54' => :binary,
2579
+ 'enterprise_custom_field55' => :binary,
2580
+ 'enterprise_custom_field56' => :binary,
2581
+ 'enterprise_custom_field57' => :binary,
2582
+ 'enterprise_custom_field58' => :binary,
2583
+ 'enterprise_custom_field59' => :binary,
2584
+ 'enterprise_custom_field6' => :binary,
2585
+ 'enterprise_custom_field60' => :binary,
2586
+ 'enterprise_custom_field61' => :binary,
2587
+ 'enterprise_custom_field62' => :binary,
2588
+ 'enterprise_custom_field63' => :binary,
2589
+ 'enterprise_custom_field64' => :binary,
2590
+ 'enterprise_custom_field65' => :binary,
2591
+ 'enterprise_custom_field66' => :binary,
2592
+ 'enterprise_custom_field67' => :binary,
2593
+ 'enterprise_custom_field68' => :binary,
2594
+ 'enterprise_custom_field69' => :binary,
2595
+ 'enterprise_custom_field7' => :binary,
2596
+ 'enterprise_custom_field70' => :binary,
2597
+ 'enterprise_custom_field71' => :binary,
2598
+ 'enterprise_custom_field72' => :binary,
2599
+ 'enterprise_custom_field73' => :binary,
2600
+ 'enterprise_custom_field74' => :binary,
2601
+ 'enterprise_custom_field75' => :binary,
2602
+ 'enterprise_custom_field76' => :binary,
2603
+ 'enterprise_custom_field77' => :binary,
2604
+ 'enterprise_custom_field78' => :binary,
2605
+ 'enterprise_custom_field79' => :binary,
2606
+ 'enterprise_custom_field8' => :binary,
2607
+ 'enterprise_custom_field80' => :binary,
2608
+ 'enterprise_custom_field81' => :binary,
2609
+ 'enterprise_custom_field82' => :binary,
2610
+ 'enterprise_custom_field83' => :binary,
2611
+ 'enterprise_custom_field84' => :binary,
2612
+ 'enterprise_custom_field85' => :binary,
2613
+ 'enterprise_custom_field86' => :binary,
2614
+ 'enterprise_custom_field87' => :binary,
2615
+ 'enterprise_custom_field88' => :binary,
2616
+ 'enterprise_custom_field89' => :binary,
2617
+ 'enterprise_custom_field9' => :binary,
2618
+ 'enterprise_custom_field90' => :binary,
2619
+ 'enterprise_custom_field91' => :binary,
2620
+ 'enterprise_custom_field92' => :binary,
2621
+ 'enterprise_custom_field93' => :binary,
2622
+ 'enterprise_custom_field94' => :binary,
2623
+ 'enterprise_custom_field95' => :binary,
2624
+ 'enterprise_custom_field96' => :binary,
2625
+ 'enterprise_custom_field97' => :binary,
2626
+ 'enterprise_custom_field98' => :binary,
2627
+ 'enterprise_custom_field99' => :binary,
2628
+ 'export_flag' => :boolean,
2629
+ 'extended_creation_date' => :date,
2630
+ 'file_application' => :string,
2631
+ 'file_type' => :string,
2632
+ 'finish_date' => :date,
2633
+ 'finish_variance' => :duration,
2634
+ 'fiscal_year_start' => :boolean,
2635
+ 'fiscal_year_start_month' => :integer,
2636
+ 'full_application_name' => :string,
2637
+ 'guid' => :guid,
2638
+ 'honor_constraints' => :boolean,
2639
+ 'hyperlink_base' => :string,
2640
+ 'inserted_projects_like_summary' => :boolean,
2641
+ 'keywords' => :string,
2642
+ 'language' => :string,
2643
+ 'lastprinted' => :date,
2644
+ 'last_author' => :string,
2645
+ 'last_saved' => :date,
2646
+ 'manager' => :string,
2647
+ 'microsoft_project_server_url' => :boolean,
2648
+ 'minutes_per_day' => :integer,
2649
+ 'minutes_per_week' => :integer,
2650
+ 'move_completed_ends_back' => :boolean,
2651
+ 'move_completed_ends_forward' => :boolean,
2652
+ 'move_remaining_starts_back' => :boolean,
2653
+ 'move_remaining_starts_forward' => :boolean,
2654
+ 'mpp_file_type' => :integer,
2655
+ 'mpx_code_page' => :mpx_code_page,
2656
+ 'mpx_delimiter' => :char,
2657
+ 'mpx_file_version' => :mpx_file_version,
2658
+ 'mpx_program_name' => :string,
2659
+ 'multiple_critical_paths' => :boolean,
2660
+ 'must_finish_by' => :date,
2661
+ 'name' => :string,
2662
+ 'new_tasks_are_manual' => :boolean,
2663
+ 'new_tasks_effort_driven' => :boolean,
2664
+ 'new_tasks_estimated' => :boolean,
2665
+ 'new_task_start_is_project_start' => :boolean,
2666
+ 'percentage_complete' => :percentage,
2667
+ 'planned_start' => :date,
2668
+ 'pm_text' => :string,
2669
+ 'presentation_format' => :string,
2670
+ 'project_externally_edited' => :boolean,
2671
+ 'project_file_path' => :string,
2672
+ 'project_id' => :string,
2673
+ 'project_title' => :string,
2674
+ 'remove_file_properties' => :boolean,
2675
+ 'revision' => :integer,
2676
+ 'scheduled_finish' => :date,
2677
+ 'schedule_from' => :schedule_from,
2678
+ 'short_application_name' => :string,
2679
+ 'show_project_summary_task' => :boolean,
2680
+ 'split_in_progress_tasks' => :boolean,
2681
+ 'spread_actual_cost' => :boolean,
2682
+ 'spread_percent_complete' => :boolean,
2683
+ 'start_date' => :date,
2684
+ 'start_variance' => :duration,
2685
+ 'status_date' => :date,
2686
+ 'subject' => :string,
2687
+ 'template' => :string,
2688
+ 'thousands_separator' => :char,
2689
+ 'time_format' => :project_time_format,
2690
+ 'time_separator' => :char,
2691
+ 'unique_id' => :integer,
2692
+ 'updating_task_status_updates_resource_status' => :boolean,
2693
+ 'week_start_day' => :day,
2694
+ 'work' => :work,
2695
+ 'work2' => :numeric,
2696
+ }.freeze
2697
+
2698
+ def attribute_types
2699
+ ATTRIBUTE_TYPES
2700
+ end
2701
+
2702
+ module PropertyClassMethods
2703
+ def attribute_types
2704
+ ATTRIBUTE_TYPES
2705
+ end
2706
+ end
2707
+ end
2708
+ end