mpxj 9.5.2 → 9.8.1

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.

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