mpxj 9.2.5 → 9.5.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of mpxj might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/README.md +87 -125
- data/lib/mpxj.rb +4 -0
- data/lib/mpxj/assignment.rb +20 -18
- data/lib/mpxj/assignment_methods.rb +3804 -0
- data/lib/mpxj/container.rb +1 -37
- data/lib/mpxj/mpxj.jar +0 -0
- data/lib/mpxj/project.rb +4 -9
- data/lib/mpxj/properties.rb +6 -5
- data/lib/mpxj/property_methods.rb +2334 -0
- data/lib/mpxj/reader.rb +1 -15
- data/lib/mpxj/relation.rb +25 -5
- data/lib/mpxj/resource.rb +12 -10
- data/lib/mpxj/resource_methods.rb +4210 -0
- data/lib/mpxj/task.rb +52 -52
- data/lib/mpxj/task_methods.rb +8137 -0
- data/lib/mpxj/version.rb +1 -1
- metadata +6 -7
- data/docs/AssignmentAttributes.md +0 -162
- data/docs/PropertiesAttributes.md +0 -128
- data/docs/RelationAttributes.md +0 -5
- data/docs/ResourceAttributes.md +0 -201
- data/docs/TaskAttributes.md +0 -318
data/lib/mpxj/reader.rb
CHANGED
@@ -20,7 +20,7 @@ module MPXJ
|
|
20
20
|
tz = zone || Time.zone || ActiveSupport::TimeZone["UTC"]
|
21
21
|
|
22
22
|
begin
|
23
|
-
classpath =
|
23
|
+
classpath = "#{File.dirname(__FILE__)}/*"
|
24
24
|
java_output = `java -cp \"#{classpath}\" #{jvm_args} net.sf.mpxj.sample.MpxjConvert \"#{file_name}\" \"#{json_file.path}\"`
|
25
25
|
if $?.exitstatus != 0
|
26
26
|
report_error(java_output)
|
@@ -50,20 +50,6 @@ module MPXJ
|
|
50
50
|
args.join(' ')
|
51
51
|
end
|
52
52
|
|
53
|
-
# @private
|
54
|
-
def self.path_separator
|
55
|
-
if windows?
|
56
|
-
";"
|
57
|
-
else
|
58
|
-
":"
|
59
|
-
end
|
60
|
-
end
|
61
|
-
|
62
|
-
# @private
|
63
|
-
def self.windows?
|
64
|
-
(/cygwin|mswin|mingw|bccwin|wince|emx/ =~ RUBY_PLATFORM) != nil
|
65
|
-
end
|
66
|
-
|
67
53
|
# @private
|
68
54
|
def self.report_error(java_output)
|
69
55
|
if java_output.include?('Conversion Error: ')
|
data/lib/mpxj/relation.rb
CHANGED
@@ -1,5 +1,25 @@
|
|
1
|
-
module MPXJ
|
2
|
-
# Represents a relationship between two tasks in a project plan
|
3
|
-
class Relation < Container
|
4
|
-
|
5
|
-
|
1
|
+
module MPXJ
|
2
|
+
# Represents a relationship between two tasks in a project plan
|
3
|
+
class Relation < Container
|
4
|
+
# Retrieve the Task Unique ID value
|
5
|
+
#
|
6
|
+
# @return Task Unique ID value
|
7
|
+
def task_unique_id
|
8
|
+
get_integer_value(attribute_values['task_unique_id'])
|
9
|
+
end
|
10
|
+
|
11
|
+
# Retrieve the Lag value
|
12
|
+
#
|
13
|
+
# @return Lag value
|
14
|
+
def lag
|
15
|
+
get_duration_value(attribute_values['lag'])
|
16
|
+
end
|
17
|
+
|
18
|
+
# Retrieve the Type value
|
19
|
+
#
|
20
|
+
# @return Type value
|
21
|
+
def type
|
22
|
+
attribute_values['type']
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
data/lib/mpxj/resource.rb
CHANGED
@@ -1,10 +1,12 @@
|
|
1
|
-
module MPXJ
|
2
|
-
# Represents a resource in a project plan
|
3
|
-
class Resource < Container
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
end
|
1
|
+
module MPXJ
|
2
|
+
# Represents a resource in a project plan
|
3
|
+
class Resource < Container
|
4
|
+
include MPXJ::ResourceMethods
|
5
|
+
|
6
|
+
attr_reader :assignments
|
7
|
+
def initialize(parent_project, attribute_values)
|
8
|
+
super(parent_project, attribute_values)
|
9
|
+
@assignments = []
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
@@ -0,0 +1,4210 @@
|
|
1
|
+
module MPXJ
|
2
|
+
module ResourceMethods
|
3
|
+
# Retrieve the Accrue At value
|
4
|
+
#
|
5
|
+
# @return Accrue At value
|
6
|
+
def accrue_at
|
7
|
+
attribute_values['accrue_at']
|
8
|
+
end
|
9
|
+
|
10
|
+
# Retrieve the Active value
|
11
|
+
#
|
12
|
+
# @return Active value
|
13
|
+
def active
|
14
|
+
get_boolean_value(attribute_values['active'])
|
15
|
+
end
|
16
|
+
|
17
|
+
# Retrieve the Actual Cost value
|
18
|
+
#
|
19
|
+
# @return Actual Cost value
|
20
|
+
def actual_cost
|
21
|
+
get_float_value(attribute_values['actual_cost'])
|
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 Overtime Cost value
|
32
|
+
#
|
33
|
+
# @return Actual Overtime Cost value
|
34
|
+
def actual_overtime_cost
|
35
|
+
get_float_value(attribute_values['actual_overtime_cost'])
|
36
|
+
end
|
37
|
+
|
38
|
+
# Retrieve the Actual Overtime Work value
|
39
|
+
#
|
40
|
+
# @return Actual Overtime Work value
|
41
|
+
def actual_overtime_work
|
42
|
+
get_duration_value(attribute_values['actual_overtime_work'])
|
43
|
+
end
|
44
|
+
|
45
|
+
# Retrieve the Actual Overtime Work Protected value
|
46
|
+
#
|
47
|
+
# @return Actual Overtime Work Protected value
|
48
|
+
def actual_overtime_work_protected
|
49
|
+
get_duration_value(attribute_values['actual_overtime_work_protected'])
|
50
|
+
end
|
51
|
+
|
52
|
+
# Retrieve the Actual Start value
|
53
|
+
#
|
54
|
+
# @return Actual Start value
|
55
|
+
def actual_start
|
56
|
+
get_date_value(attribute_values['actual_start'])
|
57
|
+
end
|
58
|
+
|
59
|
+
# Retrieve the Actual Work value
|
60
|
+
#
|
61
|
+
# @return Actual Work value
|
62
|
+
def actual_work
|
63
|
+
get_duration_value(attribute_values['actual_work'])
|
64
|
+
end
|
65
|
+
|
66
|
+
# Retrieve the Actual Work Protected value
|
67
|
+
#
|
68
|
+
# @return Actual Work Protected value
|
69
|
+
def actual_work_protected
|
70
|
+
get_duration_value(attribute_values['actual_work_protected'])
|
71
|
+
end
|
72
|
+
|
73
|
+
# Retrieve the ACWP value
|
74
|
+
#
|
75
|
+
# @return ACWP value
|
76
|
+
def acwp
|
77
|
+
get_float_value(attribute_values['acwp'])
|
78
|
+
end
|
79
|
+
|
80
|
+
# Retrieve the Assignment value
|
81
|
+
#
|
82
|
+
# @return Assignment value
|
83
|
+
def assignment
|
84
|
+
attribute_values['assignment']
|
85
|
+
end
|
86
|
+
|
87
|
+
# Retrieve the Assignment Delay value
|
88
|
+
#
|
89
|
+
# @return Assignment Delay value
|
90
|
+
def assignment_delay
|
91
|
+
attribute_values['assignment_delay']
|
92
|
+
end
|
93
|
+
|
94
|
+
# Retrieve the Assignment Owner value
|
95
|
+
#
|
96
|
+
# @return Assignment Owner value
|
97
|
+
def assignment_owner
|
98
|
+
attribute_values['assignment_owner']
|
99
|
+
end
|
100
|
+
|
101
|
+
# Retrieve the Assignment Units value
|
102
|
+
#
|
103
|
+
# @return Assignment Units value
|
104
|
+
def assignment_units
|
105
|
+
attribute_values['assignment_units']
|
106
|
+
end
|
107
|
+
|
108
|
+
# Retrieve the Availability Data value
|
109
|
+
#
|
110
|
+
# @return Availability Data value
|
111
|
+
def availability_data
|
112
|
+
attribute_values['availability_data']
|
113
|
+
end
|
114
|
+
|
115
|
+
# Retrieve the Available From value
|
116
|
+
#
|
117
|
+
# @return Available From value
|
118
|
+
def available_from
|
119
|
+
get_date_value(attribute_values['available_from'])
|
120
|
+
end
|
121
|
+
|
122
|
+
# Retrieve the Available To value
|
123
|
+
#
|
124
|
+
# @return Available To value
|
125
|
+
def available_to
|
126
|
+
get_date_value(attribute_values['available_to'])
|
127
|
+
end
|
128
|
+
|
129
|
+
# Retrieve the Baseline10 Budget Cost value
|
130
|
+
#
|
131
|
+
# @return Baseline10 Budget Cost value
|
132
|
+
def baseline10_budget_cost
|
133
|
+
get_float_value(attribute_values['baseline10_budget_cost'])
|
134
|
+
end
|
135
|
+
|
136
|
+
# Retrieve the Baseline10 Budget Work value
|
137
|
+
#
|
138
|
+
# @return Baseline10 Budget Work value
|
139
|
+
def baseline10_budget_work
|
140
|
+
get_duration_value(attribute_values['baseline10_budget_work'])
|
141
|
+
end
|
142
|
+
|
143
|
+
# Retrieve the Baseline10 Cost value
|
144
|
+
#
|
145
|
+
# @return Baseline10 Cost value
|
146
|
+
def baseline10_cost
|
147
|
+
get_float_value(attribute_values['baseline10_cost'])
|
148
|
+
end
|
149
|
+
|
150
|
+
# Retrieve the Baseline10 Finish value
|
151
|
+
#
|
152
|
+
# @return Baseline10 Finish value
|
153
|
+
def baseline10_finish
|
154
|
+
get_date_value(attribute_values['baseline10_finish'])
|
155
|
+
end
|
156
|
+
|
157
|
+
# Retrieve the Baseline10 Start value
|
158
|
+
#
|
159
|
+
# @return Baseline10 Start value
|
160
|
+
def baseline10_start
|
161
|
+
get_date_value(attribute_values['baseline10_start'])
|
162
|
+
end
|
163
|
+
|
164
|
+
# Retrieve the Baseline10 Work value
|
165
|
+
#
|
166
|
+
# @return Baseline10 Work value
|
167
|
+
def baseline10_work
|
168
|
+
get_duration_value(attribute_values['baseline10_work'])
|
169
|
+
end
|
170
|
+
|
171
|
+
# Retrieve the Baseline1 Budget Cost value
|
172
|
+
#
|
173
|
+
# @return Baseline1 Budget Cost value
|
174
|
+
def baseline1_budget_cost
|
175
|
+
get_float_value(attribute_values['baseline1_budget_cost'])
|
176
|
+
end
|
177
|
+
|
178
|
+
# Retrieve the Baseline1 Budget Work value
|
179
|
+
#
|
180
|
+
# @return Baseline1 Budget Work value
|
181
|
+
def baseline1_budget_work
|
182
|
+
get_duration_value(attribute_values['baseline1_budget_work'])
|
183
|
+
end
|
184
|
+
|
185
|
+
# Retrieve the Baseline1 Cost value
|
186
|
+
#
|
187
|
+
# @return Baseline1 Cost value
|
188
|
+
def baseline1_cost
|
189
|
+
get_float_value(attribute_values['baseline1_cost'])
|
190
|
+
end
|
191
|
+
|
192
|
+
# Retrieve the Baseline1 Finish value
|
193
|
+
#
|
194
|
+
# @return Baseline1 Finish value
|
195
|
+
def baseline1_finish
|
196
|
+
get_date_value(attribute_values['baseline1_finish'])
|
197
|
+
end
|
198
|
+
|
199
|
+
# Retrieve the Baseline1 Start value
|
200
|
+
#
|
201
|
+
# @return Baseline1 Start value
|
202
|
+
def baseline1_start
|
203
|
+
get_date_value(attribute_values['baseline1_start'])
|
204
|
+
end
|
205
|
+
|
206
|
+
# Retrieve the Baseline1 Work value
|
207
|
+
#
|
208
|
+
# @return Baseline1 Work value
|
209
|
+
def baseline1_work
|
210
|
+
get_duration_value(attribute_values['baseline1_work'])
|
211
|
+
end
|
212
|
+
|
213
|
+
# Retrieve the Baseline2 Budget Cost value
|
214
|
+
#
|
215
|
+
# @return Baseline2 Budget Cost value
|
216
|
+
def baseline2_budget_cost
|
217
|
+
get_float_value(attribute_values['baseline2_budget_cost'])
|
218
|
+
end
|
219
|
+
|
220
|
+
# Retrieve the Baseline2 Budget Work value
|
221
|
+
#
|
222
|
+
# @return Baseline2 Budget Work value
|
223
|
+
def baseline2_budget_work
|
224
|
+
get_duration_value(attribute_values['baseline2_budget_work'])
|
225
|
+
end
|
226
|
+
|
227
|
+
# Retrieve the Baseline2 Cost value
|
228
|
+
#
|
229
|
+
# @return Baseline2 Cost value
|
230
|
+
def baseline2_cost
|
231
|
+
get_float_value(attribute_values['baseline2_cost'])
|
232
|
+
end
|
233
|
+
|
234
|
+
# Retrieve the Baseline2 Finish value
|
235
|
+
#
|
236
|
+
# @return Baseline2 Finish value
|
237
|
+
def baseline2_finish
|
238
|
+
get_date_value(attribute_values['baseline2_finish'])
|
239
|
+
end
|
240
|
+
|
241
|
+
# Retrieve the Baseline2 Start value
|
242
|
+
#
|
243
|
+
# @return Baseline2 Start value
|
244
|
+
def baseline2_start
|
245
|
+
get_date_value(attribute_values['baseline2_start'])
|
246
|
+
end
|
247
|
+
|
248
|
+
# Retrieve the Baseline2 Work value
|
249
|
+
#
|
250
|
+
# @return Baseline2 Work value
|
251
|
+
def baseline2_work
|
252
|
+
get_duration_value(attribute_values['baseline2_work'])
|
253
|
+
end
|
254
|
+
|
255
|
+
# Retrieve the Baseline3 Budget Cost value
|
256
|
+
#
|
257
|
+
# @return Baseline3 Budget Cost value
|
258
|
+
def baseline3_budget_cost
|
259
|
+
get_float_value(attribute_values['baseline3_budget_cost'])
|
260
|
+
end
|
261
|
+
|
262
|
+
# Retrieve the Baseline3 Budget Work value
|
263
|
+
#
|
264
|
+
# @return Baseline3 Budget Work value
|
265
|
+
def baseline3_budget_work
|
266
|
+
get_duration_value(attribute_values['baseline3_budget_work'])
|
267
|
+
end
|
268
|
+
|
269
|
+
# Retrieve the Baseline3 Cost value
|
270
|
+
#
|
271
|
+
# @return Baseline3 Cost value
|
272
|
+
def baseline3_cost
|
273
|
+
get_float_value(attribute_values['baseline3_cost'])
|
274
|
+
end
|
275
|
+
|
276
|
+
# Retrieve the Baseline3 Finish value
|
277
|
+
#
|
278
|
+
# @return Baseline3 Finish value
|
279
|
+
def baseline3_finish
|
280
|
+
get_date_value(attribute_values['baseline3_finish'])
|
281
|
+
end
|
282
|
+
|
283
|
+
# Retrieve the Baseline3 Start value
|
284
|
+
#
|
285
|
+
# @return Baseline3 Start value
|
286
|
+
def baseline3_start
|
287
|
+
get_date_value(attribute_values['baseline3_start'])
|
288
|
+
end
|
289
|
+
|
290
|
+
# Retrieve the Baseline3 Work value
|
291
|
+
#
|
292
|
+
# @return Baseline3 Work value
|
293
|
+
def baseline3_work
|
294
|
+
get_duration_value(attribute_values['baseline3_work'])
|
295
|
+
end
|
296
|
+
|
297
|
+
# Retrieve the Baseline4 Budget Cost value
|
298
|
+
#
|
299
|
+
# @return Baseline4 Budget Cost value
|
300
|
+
def baseline4_budget_cost
|
301
|
+
get_float_value(attribute_values['baseline4_budget_cost'])
|
302
|
+
end
|
303
|
+
|
304
|
+
# Retrieve the Baseline4 Budget Work value
|
305
|
+
#
|
306
|
+
# @return Baseline4 Budget Work value
|
307
|
+
def baseline4_budget_work
|
308
|
+
get_duration_value(attribute_values['baseline4_budget_work'])
|
309
|
+
end
|
310
|
+
|
311
|
+
# Retrieve the Baseline4 Cost value
|
312
|
+
#
|
313
|
+
# @return Baseline4 Cost value
|
314
|
+
def baseline4_cost
|
315
|
+
get_float_value(attribute_values['baseline4_cost'])
|
316
|
+
end
|
317
|
+
|
318
|
+
# Retrieve the Baseline4 Finish value
|
319
|
+
#
|
320
|
+
# @return Baseline4 Finish value
|
321
|
+
def baseline4_finish
|
322
|
+
get_date_value(attribute_values['baseline4_finish'])
|
323
|
+
end
|
324
|
+
|
325
|
+
# Retrieve the Baseline4 Start value
|
326
|
+
#
|
327
|
+
# @return Baseline4 Start value
|
328
|
+
def baseline4_start
|
329
|
+
get_date_value(attribute_values['baseline4_start'])
|
330
|
+
end
|
331
|
+
|
332
|
+
# Retrieve the Baseline4 Work value
|
333
|
+
#
|
334
|
+
# @return Baseline4 Work value
|
335
|
+
def baseline4_work
|
336
|
+
get_duration_value(attribute_values['baseline4_work'])
|
337
|
+
end
|
338
|
+
|
339
|
+
# Retrieve the Baseline5 Budget Cost value
|
340
|
+
#
|
341
|
+
# @return Baseline5 Budget Cost value
|
342
|
+
def baseline5_budget_cost
|
343
|
+
get_float_value(attribute_values['baseline5_budget_cost'])
|
344
|
+
end
|
345
|
+
|
346
|
+
# Retrieve the Baseline5 Budget Work value
|
347
|
+
#
|
348
|
+
# @return Baseline5 Budget Work value
|
349
|
+
def baseline5_budget_work
|
350
|
+
get_duration_value(attribute_values['baseline5_budget_work'])
|
351
|
+
end
|
352
|
+
|
353
|
+
# Retrieve the Baseline5 Cost value
|
354
|
+
#
|
355
|
+
# @return Baseline5 Cost value
|
356
|
+
def baseline5_cost
|
357
|
+
get_float_value(attribute_values['baseline5_cost'])
|
358
|
+
end
|
359
|
+
|
360
|
+
# Retrieve the Baseline5 Finish value
|
361
|
+
#
|
362
|
+
# @return Baseline5 Finish value
|
363
|
+
def baseline5_finish
|
364
|
+
get_date_value(attribute_values['baseline5_finish'])
|
365
|
+
end
|
366
|
+
|
367
|
+
# Retrieve the Baseline5 Start value
|
368
|
+
#
|
369
|
+
# @return Baseline5 Start value
|
370
|
+
def baseline5_start
|
371
|
+
get_date_value(attribute_values['baseline5_start'])
|
372
|
+
end
|
373
|
+
|
374
|
+
# Retrieve the Baseline5 Work value
|
375
|
+
#
|
376
|
+
# @return Baseline5 Work value
|
377
|
+
def baseline5_work
|
378
|
+
get_duration_value(attribute_values['baseline5_work'])
|
379
|
+
end
|
380
|
+
|
381
|
+
# Retrieve the Baseline6 Budget Cost value
|
382
|
+
#
|
383
|
+
# @return Baseline6 Budget Cost value
|
384
|
+
def baseline6_budget_cost
|
385
|
+
get_float_value(attribute_values['baseline6_budget_cost'])
|
386
|
+
end
|
387
|
+
|
388
|
+
# Retrieve the Baseline6 Budget Work value
|
389
|
+
#
|
390
|
+
# @return Baseline6 Budget Work value
|
391
|
+
def baseline6_budget_work
|
392
|
+
get_duration_value(attribute_values['baseline6_budget_work'])
|
393
|
+
end
|
394
|
+
|
395
|
+
# Retrieve the Baseline6 Cost value
|
396
|
+
#
|
397
|
+
# @return Baseline6 Cost value
|
398
|
+
def baseline6_cost
|
399
|
+
get_float_value(attribute_values['baseline6_cost'])
|
400
|
+
end
|
401
|
+
|
402
|
+
# Retrieve the Baseline6 Finish value
|
403
|
+
#
|
404
|
+
# @return Baseline6 Finish value
|
405
|
+
def baseline6_finish
|
406
|
+
get_date_value(attribute_values['baseline6_finish'])
|
407
|
+
end
|
408
|
+
|
409
|
+
# Retrieve the Baseline6 Start value
|
410
|
+
#
|
411
|
+
# @return Baseline6 Start value
|
412
|
+
def baseline6_start
|
413
|
+
get_date_value(attribute_values['baseline6_start'])
|
414
|
+
end
|
415
|
+
|
416
|
+
# Retrieve the Baseline6 Work value
|
417
|
+
#
|
418
|
+
# @return Baseline6 Work value
|
419
|
+
def baseline6_work
|
420
|
+
get_duration_value(attribute_values['baseline6_work'])
|
421
|
+
end
|
422
|
+
|
423
|
+
# Retrieve the Baseline7 Budget Cost value
|
424
|
+
#
|
425
|
+
# @return Baseline7 Budget Cost value
|
426
|
+
def baseline7_budget_cost
|
427
|
+
get_float_value(attribute_values['baseline7_budget_cost'])
|
428
|
+
end
|
429
|
+
|
430
|
+
# Retrieve the Baseline7 Budget Work value
|
431
|
+
#
|
432
|
+
# @return Baseline7 Budget Work value
|
433
|
+
def baseline7_budget_work
|
434
|
+
get_duration_value(attribute_values['baseline7_budget_work'])
|
435
|
+
end
|
436
|
+
|
437
|
+
# Retrieve the Baseline7 Cost value
|
438
|
+
#
|
439
|
+
# @return Baseline7 Cost value
|
440
|
+
def baseline7_cost
|
441
|
+
get_float_value(attribute_values['baseline7_cost'])
|
442
|
+
end
|
443
|
+
|
444
|
+
# Retrieve the Baseline7 Finish value
|
445
|
+
#
|
446
|
+
# @return Baseline7 Finish value
|
447
|
+
def baseline7_finish
|
448
|
+
get_date_value(attribute_values['baseline7_finish'])
|
449
|
+
end
|
450
|
+
|
451
|
+
# Retrieve the Baseline7 Start value
|
452
|
+
#
|
453
|
+
# @return Baseline7 Start value
|
454
|
+
def baseline7_start
|
455
|
+
get_date_value(attribute_values['baseline7_start'])
|
456
|
+
end
|
457
|
+
|
458
|
+
# Retrieve the Baseline7 Work value
|
459
|
+
#
|
460
|
+
# @return Baseline7 Work value
|
461
|
+
def baseline7_work
|
462
|
+
get_duration_value(attribute_values['baseline7_work'])
|
463
|
+
end
|
464
|
+
|
465
|
+
# Retrieve the Baseline8 Budget Cost value
|
466
|
+
#
|
467
|
+
# @return Baseline8 Budget Cost value
|
468
|
+
def baseline8_budget_cost
|
469
|
+
get_float_value(attribute_values['baseline8_budget_cost'])
|
470
|
+
end
|
471
|
+
|
472
|
+
# Retrieve the Baseline8 Budget Work value
|
473
|
+
#
|
474
|
+
# @return Baseline8 Budget Work value
|
475
|
+
def baseline8_budget_work
|
476
|
+
get_duration_value(attribute_values['baseline8_budget_work'])
|
477
|
+
end
|
478
|
+
|
479
|
+
# Retrieve the Baseline8 Cost value
|
480
|
+
#
|
481
|
+
# @return Baseline8 Cost value
|
482
|
+
def baseline8_cost
|
483
|
+
get_float_value(attribute_values['baseline8_cost'])
|
484
|
+
end
|
485
|
+
|
486
|
+
# Retrieve the Baseline8 Finish value
|
487
|
+
#
|
488
|
+
# @return Baseline8 Finish value
|
489
|
+
def baseline8_finish
|
490
|
+
get_date_value(attribute_values['baseline8_finish'])
|
491
|
+
end
|
492
|
+
|
493
|
+
# Retrieve the Baseline8 Start value
|
494
|
+
#
|
495
|
+
# @return Baseline8 Start value
|
496
|
+
def baseline8_start
|
497
|
+
get_date_value(attribute_values['baseline8_start'])
|
498
|
+
end
|
499
|
+
|
500
|
+
# Retrieve the Baseline8 Work value
|
501
|
+
#
|
502
|
+
# @return Baseline8 Work value
|
503
|
+
def baseline8_work
|
504
|
+
get_duration_value(attribute_values['baseline8_work'])
|
505
|
+
end
|
506
|
+
|
507
|
+
# Retrieve the Baseline9 Budget Cost value
|
508
|
+
#
|
509
|
+
# @return Baseline9 Budget Cost value
|
510
|
+
def baseline9_budget_cost
|
511
|
+
get_float_value(attribute_values['baseline9_budget_cost'])
|
512
|
+
end
|
513
|
+
|
514
|
+
# Retrieve the Baseline9 Budget Work value
|
515
|
+
#
|
516
|
+
# @return Baseline9 Budget Work value
|
517
|
+
def baseline9_budget_work
|
518
|
+
get_duration_value(attribute_values['baseline9_budget_work'])
|
519
|
+
end
|
520
|
+
|
521
|
+
# Retrieve the Baseline9 Cost value
|
522
|
+
#
|
523
|
+
# @return Baseline9 Cost value
|
524
|
+
def baseline9_cost
|
525
|
+
get_float_value(attribute_values['baseline9_cost'])
|
526
|
+
end
|
527
|
+
|
528
|
+
# Retrieve the Baseline9 Finish value
|
529
|
+
#
|
530
|
+
# @return Baseline9 Finish value
|
531
|
+
def baseline9_finish
|
532
|
+
get_date_value(attribute_values['baseline9_finish'])
|
533
|
+
end
|
534
|
+
|
535
|
+
# Retrieve the Baseline9 Start value
|
536
|
+
#
|
537
|
+
# @return Baseline9 Start value
|
538
|
+
def baseline9_start
|
539
|
+
get_date_value(attribute_values['baseline9_start'])
|
540
|
+
end
|
541
|
+
|
542
|
+
# Retrieve the Baseline9 Work value
|
543
|
+
#
|
544
|
+
# @return Baseline9 Work value
|
545
|
+
def baseline9_work
|
546
|
+
get_duration_value(attribute_values['baseline9_work'])
|
547
|
+
end
|
548
|
+
|
549
|
+
# Retrieve the Baseline Budget Cost value
|
550
|
+
#
|
551
|
+
# @return Baseline Budget Cost value
|
552
|
+
def baseline_budget_cost
|
553
|
+
get_float_value(attribute_values['baseline_budget_cost'])
|
554
|
+
end
|
555
|
+
|
556
|
+
# Retrieve the Baseline Budget Work value
|
557
|
+
#
|
558
|
+
# @return Baseline Budget Work value
|
559
|
+
def baseline_budget_work
|
560
|
+
get_duration_value(attribute_values['baseline_budget_work'])
|
561
|
+
end
|
562
|
+
|
563
|
+
# Retrieve the Baseline Cost value
|
564
|
+
#
|
565
|
+
# @return Baseline Cost value
|
566
|
+
def baseline_cost
|
567
|
+
get_float_value(attribute_values['baseline_cost'])
|
568
|
+
end
|
569
|
+
|
570
|
+
# Retrieve the Baseline Finish value
|
571
|
+
#
|
572
|
+
# @return Baseline Finish value
|
573
|
+
def baseline_finish
|
574
|
+
get_date_value(attribute_values['baseline_finish'])
|
575
|
+
end
|
576
|
+
|
577
|
+
# Retrieve the Baseline Start value
|
578
|
+
#
|
579
|
+
# @return Baseline Start value
|
580
|
+
def baseline_start
|
581
|
+
get_date_value(attribute_values['baseline_start'])
|
582
|
+
end
|
583
|
+
|
584
|
+
# Retrieve the Baseline Work value
|
585
|
+
#
|
586
|
+
# @return Baseline Work value
|
587
|
+
def baseline_work
|
588
|
+
get_duration_value(attribute_values['baseline_work'])
|
589
|
+
end
|
590
|
+
|
591
|
+
# Retrieve the Base Calendar value
|
592
|
+
#
|
593
|
+
# @return Base Calendar value
|
594
|
+
def base_calendar
|
595
|
+
attribute_values['base_calendar']
|
596
|
+
end
|
597
|
+
|
598
|
+
# Retrieve the BCWP value
|
599
|
+
#
|
600
|
+
# @return BCWP value
|
601
|
+
def bcwp
|
602
|
+
get_float_value(attribute_values['bcwp'])
|
603
|
+
end
|
604
|
+
|
605
|
+
# Retrieve the BCWS value
|
606
|
+
#
|
607
|
+
# @return BCWS value
|
608
|
+
def bcws
|
609
|
+
get_float_value(attribute_values['bcws'])
|
610
|
+
end
|
611
|
+
|
612
|
+
# Retrieve the Booking Type value
|
613
|
+
#
|
614
|
+
# @return Booking Type value
|
615
|
+
def booking_type
|
616
|
+
attribute_values['booking_type']
|
617
|
+
end
|
618
|
+
|
619
|
+
# Retrieve the Budget value
|
620
|
+
#
|
621
|
+
# @return Budget value
|
622
|
+
def budget
|
623
|
+
get_boolean_value(attribute_values['budget'])
|
624
|
+
end
|
625
|
+
|
626
|
+
# Retrieve the Budget Cost value
|
627
|
+
#
|
628
|
+
# @return Budget Cost value
|
629
|
+
def budget_cost
|
630
|
+
get_float_value(attribute_values['budget_cost'])
|
631
|
+
end
|
632
|
+
|
633
|
+
# Retrieve the Budget Work value
|
634
|
+
#
|
635
|
+
# @return Budget Work value
|
636
|
+
def budget_work
|
637
|
+
get_duration_value(attribute_values['budget_work'])
|
638
|
+
end
|
639
|
+
|
640
|
+
# Retrieve the Calendar value
|
641
|
+
#
|
642
|
+
# @return Calendar value
|
643
|
+
def calendar
|
644
|
+
attribute_values['calendar']
|
645
|
+
end
|
646
|
+
|
647
|
+
# Retrieve the Calendar GUID value
|
648
|
+
#
|
649
|
+
# @return Calendar GUID value
|
650
|
+
def calendar_guid
|
651
|
+
attribute_values['calendar_guid']
|
652
|
+
end
|
653
|
+
|
654
|
+
# Retrieve the Calendar Unique ID value
|
655
|
+
#
|
656
|
+
# @return Calendar Unique ID value
|
657
|
+
def calendar_unique_id
|
658
|
+
get_integer_value(attribute_values['calendar_unique_id'])
|
659
|
+
end
|
660
|
+
|
661
|
+
# Retrieve the Can Level value
|
662
|
+
#
|
663
|
+
# @return Can Level value
|
664
|
+
def can_level
|
665
|
+
get_boolean_value(attribute_values['can_level'])
|
666
|
+
end
|
667
|
+
|
668
|
+
# Retrieve the Code value
|
669
|
+
#
|
670
|
+
# @return Code value
|
671
|
+
def code
|
672
|
+
attribute_values['code']
|
673
|
+
end
|
674
|
+
|
675
|
+
# Retrieve the Confirmed value
|
676
|
+
#
|
677
|
+
# @return Confirmed value
|
678
|
+
def confirmed
|
679
|
+
get_boolean_value(attribute_values['confirmed'])
|
680
|
+
end
|
681
|
+
|
682
|
+
# Retrieve the Cost value
|
683
|
+
#
|
684
|
+
# @return Cost value
|
685
|
+
def cost
|
686
|
+
get_float_value(attribute_values['cost'])
|
687
|
+
end
|
688
|
+
|
689
|
+
# Retrieve the Cost1 value
|
690
|
+
#
|
691
|
+
# @return Cost1 value
|
692
|
+
def cost1
|
693
|
+
get_float_value(attribute_values['cost1'])
|
694
|
+
end
|
695
|
+
|
696
|
+
# Retrieve the Cost10 value
|
697
|
+
#
|
698
|
+
# @return Cost10 value
|
699
|
+
def cost10
|
700
|
+
get_float_value(attribute_values['cost10'])
|
701
|
+
end
|
702
|
+
|
703
|
+
# Retrieve the Cost2 value
|
704
|
+
#
|
705
|
+
# @return Cost2 value
|
706
|
+
def cost2
|
707
|
+
get_float_value(attribute_values['cost2'])
|
708
|
+
end
|
709
|
+
|
710
|
+
# Retrieve the Cost3 value
|
711
|
+
#
|
712
|
+
# @return Cost3 value
|
713
|
+
def cost3
|
714
|
+
get_float_value(attribute_values['cost3'])
|
715
|
+
end
|
716
|
+
|
717
|
+
# Retrieve the Cost4 value
|
718
|
+
#
|
719
|
+
# @return Cost4 value
|
720
|
+
def cost4
|
721
|
+
get_float_value(attribute_values['cost4'])
|
722
|
+
end
|
723
|
+
|
724
|
+
# Retrieve the Cost5 value
|
725
|
+
#
|
726
|
+
# @return Cost5 value
|
727
|
+
def cost5
|
728
|
+
get_float_value(attribute_values['cost5'])
|
729
|
+
end
|
730
|
+
|
731
|
+
# Retrieve the Cost6 value
|
732
|
+
#
|
733
|
+
# @return Cost6 value
|
734
|
+
def cost6
|
735
|
+
get_float_value(attribute_values['cost6'])
|
736
|
+
end
|
737
|
+
|
738
|
+
# Retrieve the Cost7 value
|
739
|
+
#
|
740
|
+
# @return Cost7 value
|
741
|
+
def cost7
|
742
|
+
get_float_value(attribute_values['cost7'])
|
743
|
+
end
|
744
|
+
|
745
|
+
# Retrieve the Cost8 value
|
746
|
+
#
|
747
|
+
# @return Cost8 value
|
748
|
+
def cost8
|
749
|
+
get_float_value(attribute_values['cost8'])
|
750
|
+
end
|
751
|
+
|
752
|
+
# Retrieve the Cost9 value
|
753
|
+
#
|
754
|
+
# @return Cost9 value
|
755
|
+
def cost9
|
756
|
+
get_float_value(attribute_values['cost9'])
|
757
|
+
end
|
758
|
+
|
759
|
+
# Retrieve the Cost Center value
|
760
|
+
#
|
761
|
+
# @return Cost Center value
|
762
|
+
def cost_center
|
763
|
+
attribute_values['cost_center']
|
764
|
+
end
|
765
|
+
|
766
|
+
# Retrieve the Cost Per Use value
|
767
|
+
#
|
768
|
+
# @return Cost Per Use value
|
769
|
+
def cost_per_use
|
770
|
+
get_float_value(attribute_values['cost_per_use'])
|
771
|
+
end
|
772
|
+
|
773
|
+
# Retrieve the Cost Rate A value
|
774
|
+
#
|
775
|
+
# @return Cost Rate A value
|
776
|
+
def cost_rate_a
|
777
|
+
attribute_values['cost_rate_a']
|
778
|
+
end
|
779
|
+
|
780
|
+
# Retrieve the Cost Rate B value
|
781
|
+
#
|
782
|
+
# @return Cost Rate B value
|
783
|
+
def cost_rate_b
|
784
|
+
attribute_values['cost_rate_b']
|
785
|
+
end
|
786
|
+
|
787
|
+
# Retrieve the Cost Rate C value
|
788
|
+
#
|
789
|
+
# @return Cost Rate C value
|
790
|
+
def cost_rate_c
|
791
|
+
attribute_values['cost_rate_c']
|
792
|
+
end
|
793
|
+
|
794
|
+
# Retrieve the Cost Rate D value
|
795
|
+
#
|
796
|
+
# @return Cost Rate D value
|
797
|
+
def cost_rate_d
|
798
|
+
attribute_values['cost_rate_d']
|
799
|
+
end
|
800
|
+
|
801
|
+
# Retrieve the Cost Rate E value
|
802
|
+
#
|
803
|
+
# @return Cost Rate E value
|
804
|
+
def cost_rate_e
|
805
|
+
attribute_values['cost_rate_e']
|
806
|
+
end
|
807
|
+
|
808
|
+
# Retrieve the Cost Rate Table value
|
809
|
+
#
|
810
|
+
# @return Cost Rate Table value
|
811
|
+
def cost_rate_table
|
812
|
+
attribute_values['cost_rate_table']
|
813
|
+
end
|
814
|
+
|
815
|
+
# Retrieve the Cost Variance value
|
816
|
+
#
|
817
|
+
# @return Cost Variance value
|
818
|
+
def cost_variance
|
819
|
+
get_float_value(attribute_values['cost_variance'])
|
820
|
+
end
|
821
|
+
|
822
|
+
# Retrieve the Created value
|
823
|
+
#
|
824
|
+
# @return Created value
|
825
|
+
def created
|
826
|
+
get_date_value(attribute_values['created'])
|
827
|
+
end
|
828
|
+
|
829
|
+
# Retrieve the CV value
|
830
|
+
#
|
831
|
+
# @return CV value
|
832
|
+
def cv
|
833
|
+
get_float_value(attribute_values['cv'])
|
834
|
+
end
|
835
|
+
|
836
|
+
# Retrieve the Date1 value
|
837
|
+
#
|
838
|
+
# @return Date1 value
|
839
|
+
def date1
|
840
|
+
get_date_value(attribute_values['date1'])
|
841
|
+
end
|
842
|
+
|
843
|
+
# Retrieve the Date10 value
|
844
|
+
#
|
845
|
+
# @return Date10 value
|
846
|
+
def date10
|
847
|
+
get_date_value(attribute_values['date10'])
|
848
|
+
end
|
849
|
+
|
850
|
+
# Retrieve the Date2 value
|
851
|
+
#
|
852
|
+
# @return Date2 value
|
853
|
+
def date2
|
854
|
+
get_date_value(attribute_values['date2'])
|
855
|
+
end
|
856
|
+
|
857
|
+
# Retrieve the Date3 value
|
858
|
+
#
|
859
|
+
# @return Date3 value
|
860
|
+
def date3
|
861
|
+
get_date_value(attribute_values['date3'])
|
862
|
+
end
|
863
|
+
|
864
|
+
# Retrieve the Date4 value
|
865
|
+
#
|
866
|
+
# @return Date4 value
|
867
|
+
def date4
|
868
|
+
get_date_value(attribute_values['date4'])
|
869
|
+
end
|
870
|
+
|
871
|
+
# Retrieve the Date5 value
|
872
|
+
#
|
873
|
+
# @return Date5 value
|
874
|
+
def date5
|
875
|
+
get_date_value(attribute_values['date5'])
|
876
|
+
end
|
877
|
+
|
878
|
+
# Retrieve the Date6 value
|
879
|
+
#
|
880
|
+
# @return Date6 value
|
881
|
+
def date6
|
882
|
+
get_date_value(attribute_values['date6'])
|
883
|
+
end
|
884
|
+
|
885
|
+
# Retrieve the Date7 value
|
886
|
+
#
|
887
|
+
# @return Date7 value
|
888
|
+
def date7
|
889
|
+
get_date_value(attribute_values['date7'])
|
890
|
+
end
|
891
|
+
|
892
|
+
# Retrieve the Date8 value
|
893
|
+
#
|
894
|
+
# @return Date8 value
|
895
|
+
def date8
|
896
|
+
get_date_value(attribute_values['date8'])
|
897
|
+
end
|
898
|
+
|
899
|
+
# Retrieve the Date9 value
|
900
|
+
#
|
901
|
+
# @return Date9 value
|
902
|
+
def date9
|
903
|
+
get_date_value(attribute_values['date9'])
|
904
|
+
end
|
905
|
+
|
906
|
+
# Retrieve the Default Assignment Owner value
|
907
|
+
#
|
908
|
+
# @return Default Assignment Owner value
|
909
|
+
def default_assignment_owner
|
910
|
+
attribute_values['default_assignment_owner']
|
911
|
+
end
|
912
|
+
|
913
|
+
# Retrieve the Description value
|
914
|
+
#
|
915
|
+
# @return Description value
|
916
|
+
def description
|
917
|
+
attribute_values['description']
|
918
|
+
end
|
919
|
+
|
920
|
+
# Retrieve the Duration1 value
|
921
|
+
#
|
922
|
+
# @return Duration1 value
|
923
|
+
def duration1
|
924
|
+
get_duration_value(attribute_values['duration1'])
|
925
|
+
end
|
926
|
+
|
927
|
+
# Retrieve the Duration10 value
|
928
|
+
#
|
929
|
+
# @return Duration10 value
|
930
|
+
def duration10
|
931
|
+
get_duration_value(attribute_values['duration10'])
|
932
|
+
end
|
933
|
+
|
934
|
+
# Retrieve the Duration10 Units value
|
935
|
+
#
|
936
|
+
# @return Duration10 Units value
|
937
|
+
def duration10_units
|
938
|
+
attribute_values['duration10_units']
|
939
|
+
end
|
940
|
+
|
941
|
+
# Retrieve the Duration1 Units value
|
942
|
+
#
|
943
|
+
# @return Duration1 Units value
|
944
|
+
def duration1_units
|
945
|
+
attribute_values['duration1_units']
|
946
|
+
end
|
947
|
+
|
948
|
+
# Retrieve the Duration2 value
|
949
|
+
#
|
950
|
+
# @return Duration2 value
|
951
|
+
def duration2
|
952
|
+
get_duration_value(attribute_values['duration2'])
|
953
|
+
end
|
954
|
+
|
955
|
+
# Retrieve the Duration2 Units value
|
956
|
+
#
|
957
|
+
# @return Duration2 Units value
|
958
|
+
def duration2_units
|
959
|
+
attribute_values['duration2_units']
|
960
|
+
end
|
961
|
+
|
962
|
+
# Retrieve the Duration3 value
|
963
|
+
#
|
964
|
+
# @return Duration3 value
|
965
|
+
def duration3
|
966
|
+
get_duration_value(attribute_values['duration3'])
|
967
|
+
end
|
968
|
+
|
969
|
+
# Retrieve the Duration3 Units value
|
970
|
+
#
|
971
|
+
# @return Duration3 Units value
|
972
|
+
def duration3_units
|
973
|
+
attribute_values['duration3_units']
|
974
|
+
end
|
975
|
+
|
976
|
+
# Retrieve the Duration4 value
|
977
|
+
#
|
978
|
+
# @return Duration4 value
|
979
|
+
def duration4
|
980
|
+
get_duration_value(attribute_values['duration4'])
|
981
|
+
end
|
982
|
+
|
983
|
+
# Retrieve the Duration4 Units value
|
984
|
+
#
|
985
|
+
# @return Duration4 Units value
|
986
|
+
def duration4_units
|
987
|
+
attribute_values['duration4_units']
|
988
|
+
end
|
989
|
+
|
990
|
+
# Retrieve the Duration5 value
|
991
|
+
#
|
992
|
+
# @return Duration5 value
|
993
|
+
def duration5
|
994
|
+
get_duration_value(attribute_values['duration5'])
|
995
|
+
end
|
996
|
+
|
997
|
+
# Retrieve the Duration5 Units value
|
998
|
+
#
|
999
|
+
# @return Duration5 Units value
|
1000
|
+
def duration5_units
|
1001
|
+
attribute_values['duration5_units']
|
1002
|
+
end
|
1003
|
+
|
1004
|
+
# Retrieve the Duration6 value
|
1005
|
+
#
|
1006
|
+
# @return Duration6 value
|
1007
|
+
def duration6
|
1008
|
+
get_duration_value(attribute_values['duration6'])
|
1009
|
+
end
|
1010
|
+
|
1011
|
+
# Retrieve the Duration6 Units value
|
1012
|
+
#
|
1013
|
+
# @return Duration6 Units value
|
1014
|
+
def duration6_units
|
1015
|
+
attribute_values['duration6_units']
|
1016
|
+
end
|
1017
|
+
|
1018
|
+
# Retrieve the Duration7 value
|
1019
|
+
#
|
1020
|
+
# @return Duration7 value
|
1021
|
+
def duration7
|
1022
|
+
get_duration_value(attribute_values['duration7'])
|
1023
|
+
end
|
1024
|
+
|
1025
|
+
# Retrieve the Duration7 Units value
|
1026
|
+
#
|
1027
|
+
# @return Duration7 Units value
|
1028
|
+
def duration7_units
|
1029
|
+
attribute_values['duration7_units']
|
1030
|
+
end
|
1031
|
+
|
1032
|
+
# Retrieve the Duration8 value
|
1033
|
+
#
|
1034
|
+
# @return Duration8 value
|
1035
|
+
def duration8
|
1036
|
+
get_duration_value(attribute_values['duration8'])
|
1037
|
+
end
|
1038
|
+
|
1039
|
+
# Retrieve the Duration8 Units value
|
1040
|
+
#
|
1041
|
+
# @return Duration8 Units value
|
1042
|
+
def duration8_units
|
1043
|
+
attribute_values['duration8_units']
|
1044
|
+
end
|
1045
|
+
|
1046
|
+
# Retrieve the Duration9 value
|
1047
|
+
#
|
1048
|
+
# @return Duration9 value
|
1049
|
+
def duration9
|
1050
|
+
get_duration_value(attribute_values['duration9'])
|
1051
|
+
end
|
1052
|
+
|
1053
|
+
# Retrieve the Duration9 Units value
|
1054
|
+
#
|
1055
|
+
# @return Duration9 Units value
|
1056
|
+
def duration9_units
|
1057
|
+
attribute_values['duration9_units']
|
1058
|
+
end
|
1059
|
+
|
1060
|
+
# Retrieve the Email Address value
|
1061
|
+
#
|
1062
|
+
# @return Email Address value
|
1063
|
+
def email_address
|
1064
|
+
attribute_values['email_address']
|
1065
|
+
end
|
1066
|
+
|
1067
|
+
# Retrieve the Engagement Status value
|
1068
|
+
#
|
1069
|
+
# @return Engagement Status value
|
1070
|
+
def engagement_status
|
1071
|
+
attribute_values['engagement_status']
|
1072
|
+
end
|
1073
|
+
|
1074
|
+
# Retrieve the Enterprise value
|
1075
|
+
#
|
1076
|
+
# @return Enterprise value
|
1077
|
+
def enterprise
|
1078
|
+
get_boolean_value(attribute_values['enterprise'])
|
1079
|
+
end
|
1080
|
+
|
1081
|
+
# Retrieve the Enterprise Base Calendar value
|
1082
|
+
#
|
1083
|
+
# @return Enterprise Base Calendar value
|
1084
|
+
def enterprise_base_calendar
|
1085
|
+
attribute_values['enterprise_base_calendar']
|
1086
|
+
end
|
1087
|
+
|
1088
|
+
# Retrieve the Enterprise Checked Out By value
|
1089
|
+
#
|
1090
|
+
# @return Enterprise Checked Out By value
|
1091
|
+
def enterprise_checked_out_by
|
1092
|
+
attribute_values['enterprise_checked_out_by']
|
1093
|
+
end
|
1094
|
+
|
1095
|
+
# Retrieve the Enterprise Cost1 value
|
1096
|
+
#
|
1097
|
+
# @return Enterprise Cost1 value
|
1098
|
+
def enterprise_cost1
|
1099
|
+
get_float_value(attribute_values['enterprise_cost1'])
|
1100
|
+
end
|
1101
|
+
|
1102
|
+
# Retrieve the Enterprise Cost10 value
|
1103
|
+
#
|
1104
|
+
# @return Enterprise Cost10 value
|
1105
|
+
def enterprise_cost10
|
1106
|
+
get_float_value(attribute_values['enterprise_cost10'])
|
1107
|
+
end
|
1108
|
+
|
1109
|
+
# Retrieve the Enterprise Cost2 value
|
1110
|
+
#
|
1111
|
+
# @return Enterprise Cost2 value
|
1112
|
+
def enterprise_cost2
|
1113
|
+
get_float_value(attribute_values['enterprise_cost2'])
|
1114
|
+
end
|
1115
|
+
|
1116
|
+
# Retrieve the Enterprise Cost3 value
|
1117
|
+
#
|
1118
|
+
# @return Enterprise Cost3 value
|
1119
|
+
def enterprise_cost3
|
1120
|
+
get_float_value(attribute_values['enterprise_cost3'])
|
1121
|
+
end
|
1122
|
+
|
1123
|
+
# Retrieve the Enterprise Cost4 value
|
1124
|
+
#
|
1125
|
+
# @return Enterprise Cost4 value
|
1126
|
+
def enterprise_cost4
|
1127
|
+
get_float_value(attribute_values['enterprise_cost4'])
|
1128
|
+
end
|
1129
|
+
|
1130
|
+
# Retrieve the Enterprise Cost5 value
|
1131
|
+
#
|
1132
|
+
# @return Enterprise Cost5 value
|
1133
|
+
def enterprise_cost5
|
1134
|
+
get_float_value(attribute_values['enterprise_cost5'])
|
1135
|
+
end
|
1136
|
+
|
1137
|
+
# Retrieve the Enterprise Cost6 value
|
1138
|
+
#
|
1139
|
+
# @return Enterprise Cost6 value
|
1140
|
+
def enterprise_cost6
|
1141
|
+
get_float_value(attribute_values['enterprise_cost6'])
|
1142
|
+
end
|
1143
|
+
|
1144
|
+
# Retrieve the Enterprise Cost7 value
|
1145
|
+
#
|
1146
|
+
# @return Enterprise Cost7 value
|
1147
|
+
def enterprise_cost7
|
1148
|
+
get_float_value(attribute_values['enterprise_cost7'])
|
1149
|
+
end
|
1150
|
+
|
1151
|
+
# Retrieve the Enterprise Cost8 value
|
1152
|
+
#
|
1153
|
+
# @return Enterprise Cost8 value
|
1154
|
+
def enterprise_cost8
|
1155
|
+
get_float_value(attribute_values['enterprise_cost8'])
|
1156
|
+
end
|
1157
|
+
|
1158
|
+
# Retrieve the Enterprise Cost9 value
|
1159
|
+
#
|
1160
|
+
# @return Enterprise Cost9 value
|
1161
|
+
def enterprise_cost9
|
1162
|
+
get_float_value(attribute_values['enterprise_cost9'])
|
1163
|
+
end
|
1164
|
+
|
1165
|
+
# Retrieve the Enterprise Custom Field 1 value
|
1166
|
+
#
|
1167
|
+
# @return Enterprise Custom Field 1 value
|
1168
|
+
def enterprise_custom_field1
|
1169
|
+
attribute_values['enterprise_custom_field1']
|
1170
|
+
end
|
1171
|
+
|
1172
|
+
# Retrieve the Enterprise Custom Field 10 value
|
1173
|
+
#
|
1174
|
+
# @return Enterprise Custom Field 10 value
|
1175
|
+
def enterprise_custom_field10
|
1176
|
+
attribute_values['enterprise_custom_field10']
|
1177
|
+
end
|
1178
|
+
|
1179
|
+
# Retrieve the Enterprise Custom Field 11 value
|
1180
|
+
#
|
1181
|
+
# @return Enterprise Custom Field 11 value
|
1182
|
+
def enterprise_custom_field11
|
1183
|
+
attribute_values['enterprise_custom_field11']
|
1184
|
+
end
|
1185
|
+
|
1186
|
+
# Retrieve the Enterprise Custom Field 12 value
|
1187
|
+
#
|
1188
|
+
# @return Enterprise Custom Field 12 value
|
1189
|
+
def enterprise_custom_field12
|
1190
|
+
attribute_values['enterprise_custom_field12']
|
1191
|
+
end
|
1192
|
+
|
1193
|
+
# Retrieve the Enterprise Custom Field 13 value
|
1194
|
+
#
|
1195
|
+
# @return Enterprise Custom Field 13 value
|
1196
|
+
def enterprise_custom_field13
|
1197
|
+
attribute_values['enterprise_custom_field13']
|
1198
|
+
end
|
1199
|
+
|
1200
|
+
# Retrieve the Enterprise Custom Field 14 value
|
1201
|
+
#
|
1202
|
+
# @return Enterprise Custom Field 14 value
|
1203
|
+
def enterprise_custom_field14
|
1204
|
+
attribute_values['enterprise_custom_field14']
|
1205
|
+
end
|
1206
|
+
|
1207
|
+
# Retrieve the Enterprise Custom Field 15 value
|
1208
|
+
#
|
1209
|
+
# @return Enterprise Custom Field 15 value
|
1210
|
+
def enterprise_custom_field15
|
1211
|
+
attribute_values['enterprise_custom_field15']
|
1212
|
+
end
|
1213
|
+
|
1214
|
+
# Retrieve the Enterprise Custom Field 16 value
|
1215
|
+
#
|
1216
|
+
# @return Enterprise Custom Field 16 value
|
1217
|
+
def enterprise_custom_field16
|
1218
|
+
attribute_values['enterprise_custom_field16']
|
1219
|
+
end
|
1220
|
+
|
1221
|
+
# Retrieve the Enterprise Custom Field 17 value
|
1222
|
+
#
|
1223
|
+
# @return Enterprise Custom Field 17 value
|
1224
|
+
def enterprise_custom_field17
|
1225
|
+
attribute_values['enterprise_custom_field17']
|
1226
|
+
end
|
1227
|
+
|
1228
|
+
# Retrieve the Enterprise Custom Field 18 value
|
1229
|
+
#
|
1230
|
+
# @return Enterprise Custom Field 18 value
|
1231
|
+
def enterprise_custom_field18
|
1232
|
+
attribute_values['enterprise_custom_field18']
|
1233
|
+
end
|
1234
|
+
|
1235
|
+
# Retrieve the Enterprise Custom Field 19 value
|
1236
|
+
#
|
1237
|
+
# @return Enterprise Custom Field 19 value
|
1238
|
+
def enterprise_custom_field19
|
1239
|
+
attribute_values['enterprise_custom_field19']
|
1240
|
+
end
|
1241
|
+
|
1242
|
+
# Retrieve the Enterprise Custom Field 2 value
|
1243
|
+
#
|
1244
|
+
# @return Enterprise Custom Field 2 value
|
1245
|
+
def enterprise_custom_field2
|
1246
|
+
attribute_values['enterprise_custom_field2']
|
1247
|
+
end
|
1248
|
+
|
1249
|
+
# Retrieve the Enterprise Custom Field 20 value
|
1250
|
+
#
|
1251
|
+
# @return Enterprise Custom Field 20 value
|
1252
|
+
def enterprise_custom_field20
|
1253
|
+
attribute_values['enterprise_custom_field20']
|
1254
|
+
end
|
1255
|
+
|
1256
|
+
# Retrieve the Enterprise Custom Field 21 value
|
1257
|
+
#
|
1258
|
+
# @return Enterprise Custom Field 21 value
|
1259
|
+
def enterprise_custom_field21
|
1260
|
+
attribute_values['enterprise_custom_field21']
|
1261
|
+
end
|
1262
|
+
|
1263
|
+
# Retrieve the Enterprise Custom Field 22 value
|
1264
|
+
#
|
1265
|
+
# @return Enterprise Custom Field 22 value
|
1266
|
+
def enterprise_custom_field22
|
1267
|
+
attribute_values['enterprise_custom_field22']
|
1268
|
+
end
|
1269
|
+
|
1270
|
+
# Retrieve the Enterprise Custom Field 23 value
|
1271
|
+
#
|
1272
|
+
# @return Enterprise Custom Field 23 value
|
1273
|
+
def enterprise_custom_field23
|
1274
|
+
attribute_values['enterprise_custom_field23']
|
1275
|
+
end
|
1276
|
+
|
1277
|
+
# Retrieve the Enterprise Custom Field 24 value
|
1278
|
+
#
|
1279
|
+
# @return Enterprise Custom Field 24 value
|
1280
|
+
def enterprise_custom_field24
|
1281
|
+
attribute_values['enterprise_custom_field24']
|
1282
|
+
end
|
1283
|
+
|
1284
|
+
# Retrieve the Enterprise Custom Field 25 value
|
1285
|
+
#
|
1286
|
+
# @return Enterprise Custom Field 25 value
|
1287
|
+
def enterprise_custom_field25
|
1288
|
+
attribute_values['enterprise_custom_field25']
|
1289
|
+
end
|
1290
|
+
|
1291
|
+
# Retrieve the Enterprise Custom Field 26 value
|
1292
|
+
#
|
1293
|
+
# @return Enterprise Custom Field 26 value
|
1294
|
+
def enterprise_custom_field26
|
1295
|
+
attribute_values['enterprise_custom_field26']
|
1296
|
+
end
|
1297
|
+
|
1298
|
+
# Retrieve the Enterprise Custom Field 27 value
|
1299
|
+
#
|
1300
|
+
# @return Enterprise Custom Field 27 value
|
1301
|
+
def enterprise_custom_field27
|
1302
|
+
attribute_values['enterprise_custom_field27']
|
1303
|
+
end
|
1304
|
+
|
1305
|
+
# Retrieve the Enterprise Custom Field 28 value
|
1306
|
+
#
|
1307
|
+
# @return Enterprise Custom Field 28 value
|
1308
|
+
def enterprise_custom_field28
|
1309
|
+
attribute_values['enterprise_custom_field28']
|
1310
|
+
end
|
1311
|
+
|
1312
|
+
# Retrieve the Enterprise Custom Field 29 value
|
1313
|
+
#
|
1314
|
+
# @return Enterprise Custom Field 29 value
|
1315
|
+
def enterprise_custom_field29
|
1316
|
+
attribute_values['enterprise_custom_field29']
|
1317
|
+
end
|
1318
|
+
|
1319
|
+
# Retrieve the Enterprise Custom Field 3 value
|
1320
|
+
#
|
1321
|
+
# @return Enterprise Custom Field 3 value
|
1322
|
+
def enterprise_custom_field3
|
1323
|
+
attribute_values['enterprise_custom_field3']
|
1324
|
+
end
|
1325
|
+
|
1326
|
+
# Retrieve the Enterprise Custom Field 30 value
|
1327
|
+
#
|
1328
|
+
# @return Enterprise Custom Field 30 value
|
1329
|
+
def enterprise_custom_field30
|
1330
|
+
attribute_values['enterprise_custom_field30']
|
1331
|
+
end
|
1332
|
+
|
1333
|
+
# Retrieve the Enterprise Custom Field 31 value
|
1334
|
+
#
|
1335
|
+
# @return Enterprise Custom Field 31 value
|
1336
|
+
def enterprise_custom_field31
|
1337
|
+
attribute_values['enterprise_custom_field31']
|
1338
|
+
end
|
1339
|
+
|
1340
|
+
# Retrieve the Enterprise Custom Field 32 value
|
1341
|
+
#
|
1342
|
+
# @return Enterprise Custom Field 32 value
|
1343
|
+
def enterprise_custom_field32
|
1344
|
+
attribute_values['enterprise_custom_field32']
|
1345
|
+
end
|
1346
|
+
|
1347
|
+
# Retrieve the Enterprise Custom Field 33 value
|
1348
|
+
#
|
1349
|
+
# @return Enterprise Custom Field 33 value
|
1350
|
+
def enterprise_custom_field33
|
1351
|
+
attribute_values['enterprise_custom_field33']
|
1352
|
+
end
|
1353
|
+
|
1354
|
+
# Retrieve the Enterprise Custom Field 34 value
|
1355
|
+
#
|
1356
|
+
# @return Enterprise Custom Field 34 value
|
1357
|
+
def enterprise_custom_field34
|
1358
|
+
attribute_values['enterprise_custom_field34']
|
1359
|
+
end
|
1360
|
+
|
1361
|
+
# Retrieve the Enterprise Custom Field 35 value
|
1362
|
+
#
|
1363
|
+
# @return Enterprise Custom Field 35 value
|
1364
|
+
def enterprise_custom_field35
|
1365
|
+
attribute_values['enterprise_custom_field35']
|
1366
|
+
end
|
1367
|
+
|
1368
|
+
# Retrieve the Enterprise Custom Field 36 value
|
1369
|
+
#
|
1370
|
+
# @return Enterprise Custom Field 36 value
|
1371
|
+
def enterprise_custom_field36
|
1372
|
+
attribute_values['enterprise_custom_field36']
|
1373
|
+
end
|
1374
|
+
|
1375
|
+
# Retrieve the Enterprise Custom Field 37 value
|
1376
|
+
#
|
1377
|
+
# @return Enterprise Custom Field 37 value
|
1378
|
+
def enterprise_custom_field37
|
1379
|
+
attribute_values['enterprise_custom_field37']
|
1380
|
+
end
|
1381
|
+
|
1382
|
+
# Retrieve the Enterprise Custom Field 38 value
|
1383
|
+
#
|
1384
|
+
# @return Enterprise Custom Field 38 value
|
1385
|
+
def enterprise_custom_field38
|
1386
|
+
attribute_values['enterprise_custom_field38']
|
1387
|
+
end
|
1388
|
+
|
1389
|
+
# Retrieve the Enterprise Custom Field 39 value
|
1390
|
+
#
|
1391
|
+
# @return Enterprise Custom Field 39 value
|
1392
|
+
def enterprise_custom_field39
|
1393
|
+
attribute_values['enterprise_custom_field39']
|
1394
|
+
end
|
1395
|
+
|
1396
|
+
# Retrieve the Enterprise Custom Field 4 value
|
1397
|
+
#
|
1398
|
+
# @return Enterprise Custom Field 4 value
|
1399
|
+
def enterprise_custom_field4
|
1400
|
+
attribute_values['enterprise_custom_field4']
|
1401
|
+
end
|
1402
|
+
|
1403
|
+
# Retrieve the Enterprise Custom Field 40 value
|
1404
|
+
#
|
1405
|
+
# @return Enterprise Custom Field 40 value
|
1406
|
+
def enterprise_custom_field40
|
1407
|
+
attribute_values['enterprise_custom_field40']
|
1408
|
+
end
|
1409
|
+
|
1410
|
+
# Retrieve the Enterprise Custom Field 41 value
|
1411
|
+
#
|
1412
|
+
# @return Enterprise Custom Field 41 value
|
1413
|
+
def enterprise_custom_field41
|
1414
|
+
attribute_values['enterprise_custom_field41']
|
1415
|
+
end
|
1416
|
+
|
1417
|
+
# Retrieve the Enterprise Custom Field 42 value
|
1418
|
+
#
|
1419
|
+
# @return Enterprise Custom Field 42 value
|
1420
|
+
def enterprise_custom_field42
|
1421
|
+
attribute_values['enterprise_custom_field42']
|
1422
|
+
end
|
1423
|
+
|
1424
|
+
# Retrieve the Enterprise Custom Field 43 value
|
1425
|
+
#
|
1426
|
+
# @return Enterprise Custom Field 43 value
|
1427
|
+
def enterprise_custom_field43
|
1428
|
+
attribute_values['enterprise_custom_field43']
|
1429
|
+
end
|
1430
|
+
|
1431
|
+
# Retrieve the Enterprise Custom Field 44 value
|
1432
|
+
#
|
1433
|
+
# @return Enterprise Custom Field 44 value
|
1434
|
+
def enterprise_custom_field44
|
1435
|
+
attribute_values['enterprise_custom_field44']
|
1436
|
+
end
|
1437
|
+
|
1438
|
+
# Retrieve the Enterprise Custom Field 45 value
|
1439
|
+
#
|
1440
|
+
# @return Enterprise Custom Field 45 value
|
1441
|
+
def enterprise_custom_field45
|
1442
|
+
attribute_values['enterprise_custom_field45']
|
1443
|
+
end
|
1444
|
+
|
1445
|
+
# Retrieve the Enterprise Custom Field 46 value
|
1446
|
+
#
|
1447
|
+
# @return Enterprise Custom Field 46 value
|
1448
|
+
def enterprise_custom_field46
|
1449
|
+
attribute_values['enterprise_custom_field46']
|
1450
|
+
end
|
1451
|
+
|
1452
|
+
# Retrieve the Enterprise Custom Field 47 value
|
1453
|
+
#
|
1454
|
+
# @return Enterprise Custom Field 47 value
|
1455
|
+
def enterprise_custom_field47
|
1456
|
+
attribute_values['enterprise_custom_field47']
|
1457
|
+
end
|
1458
|
+
|
1459
|
+
# Retrieve the Enterprise Custom Field 48 value
|
1460
|
+
#
|
1461
|
+
# @return Enterprise Custom Field 48 value
|
1462
|
+
def enterprise_custom_field48
|
1463
|
+
attribute_values['enterprise_custom_field48']
|
1464
|
+
end
|
1465
|
+
|
1466
|
+
# Retrieve the Enterprise Custom Field 49 value
|
1467
|
+
#
|
1468
|
+
# @return Enterprise Custom Field 49 value
|
1469
|
+
def enterprise_custom_field49
|
1470
|
+
attribute_values['enterprise_custom_field49']
|
1471
|
+
end
|
1472
|
+
|
1473
|
+
# Retrieve the Enterprise Custom Field 5 value
|
1474
|
+
#
|
1475
|
+
# @return Enterprise Custom Field 5 value
|
1476
|
+
def enterprise_custom_field5
|
1477
|
+
attribute_values['enterprise_custom_field5']
|
1478
|
+
end
|
1479
|
+
|
1480
|
+
# Retrieve the Enterprise Custom Field 50 value
|
1481
|
+
#
|
1482
|
+
# @return Enterprise Custom Field 50 value
|
1483
|
+
def enterprise_custom_field50
|
1484
|
+
attribute_values['enterprise_custom_field50']
|
1485
|
+
end
|
1486
|
+
|
1487
|
+
# Retrieve the Enterprise Custom Field 6 value
|
1488
|
+
#
|
1489
|
+
# @return Enterprise Custom Field 6 value
|
1490
|
+
def enterprise_custom_field6
|
1491
|
+
attribute_values['enterprise_custom_field6']
|
1492
|
+
end
|
1493
|
+
|
1494
|
+
# Retrieve the Enterprise Custom Field 7 value
|
1495
|
+
#
|
1496
|
+
# @return Enterprise Custom Field 7 value
|
1497
|
+
def enterprise_custom_field7
|
1498
|
+
attribute_values['enterprise_custom_field7']
|
1499
|
+
end
|
1500
|
+
|
1501
|
+
# Retrieve the Enterprise Custom Field 8 value
|
1502
|
+
#
|
1503
|
+
# @return Enterprise Custom Field 8 value
|
1504
|
+
def enterprise_custom_field8
|
1505
|
+
attribute_values['enterprise_custom_field8']
|
1506
|
+
end
|
1507
|
+
|
1508
|
+
# Retrieve the Enterprise Custom Field 9 value
|
1509
|
+
#
|
1510
|
+
# @return Enterprise Custom Field 9 value
|
1511
|
+
def enterprise_custom_field9
|
1512
|
+
attribute_values['enterprise_custom_field9']
|
1513
|
+
end
|
1514
|
+
|
1515
|
+
# Retrieve the Enterprise Data value
|
1516
|
+
#
|
1517
|
+
# @return Enterprise Data value
|
1518
|
+
def enterprise_data
|
1519
|
+
attribute_values['enterprise_data']
|
1520
|
+
end
|
1521
|
+
|
1522
|
+
# Retrieve the Enterprise Date1 value
|
1523
|
+
#
|
1524
|
+
# @return Enterprise Date1 value
|
1525
|
+
def enterprise_date1
|
1526
|
+
get_date_value(attribute_values['enterprise_date1'])
|
1527
|
+
end
|
1528
|
+
|
1529
|
+
# Retrieve the Enterprise Date10 value
|
1530
|
+
#
|
1531
|
+
# @return Enterprise Date10 value
|
1532
|
+
def enterprise_date10
|
1533
|
+
get_date_value(attribute_values['enterprise_date10'])
|
1534
|
+
end
|
1535
|
+
|
1536
|
+
# Retrieve the Enterprise Date11 value
|
1537
|
+
#
|
1538
|
+
# @return Enterprise Date11 value
|
1539
|
+
def enterprise_date11
|
1540
|
+
get_date_value(attribute_values['enterprise_date11'])
|
1541
|
+
end
|
1542
|
+
|
1543
|
+
# Retrieve the Enterprise Date12 value
|
1544
|
+
#
|
1545
|
+
# @return Enterprise Date12 value
|
1546
|
+
def enterprise_date12
|
1547
|
+
get_date_value(attribute_values['enterprise_date12'])
|
1548
|
+
end
|
1549
|
+
|
1550
|
+
# Retrieve the Enterprise Date13 value
|
1551
|
+
#
|
1552
|
+
# @return Enterprise Date13 value
|
1553
|
+
def enterprise_date13
|
1554
|
+
get_date_value(attribute_values['enterprise_date13'])
|
1555
|
+
end
|
1556
|
+
|
1557
|
+
# Retrieve the Enterprise Date14 value
|
1558
|
+
#
|
1559
|
+
# @return Enterprise Date14 value
|
1560
|
+
def enterprise_date14
|
1561
|
+
get_date_value(attribute_values['enterprise_date14'])
|
1562
|
+
end
|
1563
|
+
|
1564
|
+
# Retrieve the Enterprise Date15 value
|
1565
|
+
#
|
1566
|
+
# @return Enterprise Date15 value
|
1567
|
+
def enterprise_date15
|
1568
|
+
get_date_value(attribute_values['enterprise_date15'])
|
1569
|
+
end
|
1570
|
+
|
1571
|
+
# Retrieve the Enterprise Date16 value
|
1572
|
+
#
|
1573
|
+
# @return Enterprise Date16 value
|
1574
|
+
def enterprise_date16
|
1575
|
+
get_date_value(attribute_values['enterprise_date16'])
|
1576
|
+
end
|
1577
|
+
|
1578
|
+
# Retrieve the Enterprise Date17 value
|
1579
|
+
#
|
1580
|
+
# @return Enterprise Date17 value
|
1581
|
+
def enterprise_date17
|
1582
|
+
get_date_value(attribute_values['enterprise_date17'])
|
1583
|
+
end
|
1584
|
+
|
1585
|
+
# Retrieve the Enterprise Date18 value
|
1586
|
+
#
|
1587
|
+
# @return Enterprise Date18 value
|
1588
|
+
def enterprise_date18
|
1589
|
+
get_date_value(attribute_values['enterprise_date18'])
|
1590
|
+
end
|
1591
|
+
|
1592
|
+
# Retrieve the Enterprise Date19 value
|
1593
|
+
#
|
1594
|
+
# @return Enterprise Date19 value
|
1595
|
+
def enterprise_date19
|
1596
|
+
get_date_value(attribute_values['enterprise_date19'])
|
1597
|
+
end
|
1598
|
+
|
1599
|
+
# Retrieve the Enterprise Date2 value
|
1600
|
+
#
|
1601
|
+
# @return Enterprise Date2 value
|
1602
|
+
def enterprise_date2
|
1603
|
+
get_date_value(attribute_values['enterprise_date2'])
|
1604
|
+
end
|
1605
|
+
|
1606
|
+
# Retrieve the Enterprise Date20 value
|
1607
|
+
#
|
1608
|
+
# @return Enterprise Date20 value
|
1609
|
+
def enterprise_date20
|
1610
|
+
get_date_value(attribute_values['enterprise_date20'])
|
1611
|
+
end
|
1612
|
+
|
1613
|
+
# Retrieve the Enterprise Date21 value
|
1614
|
+
#
|
1615
|
+
# @return Enterprise Date21 value
|
1616
|
+
def enterprise_date21
|
1617
|
+
get_date_value(attribute_values['enterprise_date21'])
|
1618
|
+
end
|
1619
|
+
|
1620
|
+
# Retrieve the Enterprise Date22 value
|
1621
|
+
#
|
1622
|
+
# @return Enterprise Date22 value
|
1623
|
+
def enterprise_date22
|
1624
|
+
get_date_value(attribute_values['enterprise_date22'])
|
1625
|
+
end
|
1626
|
+
|
1627
|
+
# Retrieve the Enterprise Date23 value
|
1628
|
+
#
|
1629
|
+
# @return Enterprise Date23 value
|
1630
|
+
def enterprise_date23
|
1631
|
+
get_date_value(attribute_values['enterprise_date23'])
|
1632
|
+
end
|
1633
|
+
|
1634
|
+
# Retrieve the Enterprise Date24 value
|
1635
|
+
#
|
1636
|
+
# @return Enterprise Date24 value
|
1637
|
+
def enterprise_date24
|
1638
|
+
get_date_value(attribute_values['enterprise_date24'])
|
1639
|
+
end
|
1640
|
+
|
1641
|
+
# Retrieve the Enterprise Date25 value
|
1642
|
+
#
|
1643
|
+
# @return Enterprise Date25 value
|
1644
|
+
def enterprise_date25
|
1645
|
+
get_date_value(attribute_values['enterprise_date25'])
|
1646
|
+
end
|
1647
|
+
|
1648
|
+
# Retrieve the Enterprise Date26 value
|
1649
|
+
#
|
1650
|
+
# @return Enterprise Date26 value
|
1651
|
+
def enterprise_date26
|
1652
|
+
get_date_value(attribute_values['enterprise_date26'])
|
1653
|
+
end
|
1654
|
+
|
1655
|
+
# Retrieve the Enterprise Date27 value
|
1656
|
+
#
|
1657
|
+
# @return Enterprise Date27 value
|
1658
|
+
def enterprise_date27
|
1659
|
+
get_date_value(attribute_values['enterprise_date27'])
|
1660
|
+
end
|
1661
|
+
|
1662
|
+
# Retrieve the Enterprise Date28 value
|
1663
|
+
#
|
1664
|
+
# @return Enterprise Date28 value
|
1665
|
+
def enterprise_date28
|
1666
|
+
get_date_value(attribute_values['enterprise_date28'])
|
1667
|
+
end
|
1668
|
+
|
1669
|
+
# Retrieve the Enterprise Date29 value
|
1670
|
+
#
|
1671
|
+
# @return Enterprise Date29 value
|
1672
|
+
def enterprise_date29
|
1673
|
+
get_date_value(attribute_values['enterprise_date29'])
|
1674
|
+
end
|
1675
|
+
|
1676
|
+
# Retrieve the Enterprise Date3 value
|
1677
|
+
#
|
1678
|
+
# @return Enterprise Date3 value
|
1679
|
+
def enterprise_date3
|
1680
|
+
get_date_value(attribute_values['enterprise_date3'])
|
1681
|
+
end
|
1682
|
+
|
1683
|
+
# Retrieve the Enterprise Date30 value
|
1684
|
+
#
|
1685
|
+
# @return Enterprise Date30 value
|
1686
|
+
def enterprise_date30
|
1687
|
+
get_date_value(attribute_values['enterprise_date30'])
|
1688
|
+
end
|
1689
|
+
|
1690
|
+
# Retrieve the Enterprise Date4 value
|
1691
|
+
#
|
1692
|
+
# @return Enterprise Date4 value
|
1693
|
+
def enterprise_date4
|
1694
|
+
get_date_value(attribute_values['enterprise_date4'])
|
1695
|
+
end
|
1696
|
+
|
1697
|
+
# Retrieve the Enterprise Date5 value
|
1698
|
+
#
|
1699
|
+
# @return Enterprise Date5 value
|
1700
|
+
def enterprise_date5
|
1701
|
+
get_date_value(attribute_values['enterprise_date5'])
|
1702
|
+
end
|
1703
|
+
|
1704
|
+
# Retrieve the Enterprise Date6 value
|
1705
|
+
#
|
1706
|
+
# @return Enterprise Date6 value
|
1707
|
+
def enterprise_date6
|
1708
|
+
get_date_value(attribute_values['enterprise_date6'])
|
1709
|
+
end
|
1710
|
+
|
1711
|
+
# Retrieve the Enterprise Date7 value
|
1712
|
+
#
|
1713
|
+
# @return Enterprise Date7 value
|
1714
|
+
def enterprise_date7
|
1715
|
+
get_date_value(attribute_values['enterprise_date7'])
|
1716
|
+
end
|
1717
|
+
|
1718
|
+
# Retrieve the Enterprise Date8 value
|
1719
|
+
#
|
1720
|
+
# @return Enterprise Date8 value
|
1721
|
+
def enterprise_date8
|
1722
|
+
get_date_value(attribute_values['enterprise_date8'])
|
1723
|
+
end
|
1724
|
+
|
1725
|
+
# Retrieve the Enterprise Date9 value
|
1726
|
+
#
|
1727
|
+
# @return Enterprise Date9 value
|
1728
|
+
def enterprise_date9
|
1729
|
+
get_date_value(attribute_values['enterprise_date9'])
|
1730
|
+
end
|
1731
|
+
|
1732
|
+
# Retrieve the Enterprise Duration1 value
|
1733
|
+
#
|
1734
|
+
# @return Enterprise Duration1 value
|
1735
|
+
def enterprise_duration1
|
1736
|
+
get_duration_value(attribute_values['enterprise_duration1'])
|
1737
|
+
end
|
1738
|
+
|
1739
|
+
# Retrieve the Enterprise Duration10 value
|
1740
|
+
#
|
1741
|
+
# @return Enterprise Duration10 value
|
1742
|
+
def enterprise_duration10
|
1743
|
+
get_duration_value(attribute_values['enterprise_duration10'])
|
1744
|
+
end
|
1745
|
+
|
1746
|
+
# Retrieve the Enterprise Duration10 Units value
|
1747
|
+
#
|
1748
|
+
# @return Enterprise Duration10 Units value
|
1749
|
+
def enterprise_duration10_units
|
1750
|
+
attribute_values['enterprise_duration10_units']
|
1751
|
+
end
|
1752
|
+
|
1753
|
+
# Retrieve the Enterprise Duration1 Units value
|
1754
|
+
#
|
1755
|
+
# @return Enterprise Duration1 Units value
|
1756
|
+
def enterprise_duration1_units
|
1757
|
+
attribute_values['enterprise_duration1_units']
|
1758
|
+
end
|
1759
|
+
|
1760
|
+
# Retrieve the Enterprise Duration2 value
|
1761
|
+
#
|
1762
|
+
# @return Enterprise Duration2 value
|
1763
|
+
def enterprise_duration2
|
1764
|
+
get_duration_value(attribute_values['enterprise_duration2'])
|
1765
|
+
end
|
1766
|
+
|
1767
|
+
# Retrieve the Enterprise Duration2 Units value
|
1768
|
+
#
|
1769
|
+
# @return Enterprise Duration2 Units value
|
1770
|
+
def enterprise_duration2_units
|
1771
|
+
attribute_values['enterprise_duration2_units']
|
1772
|
+
end
|
1773
|
+
|
1774
|
+
# Retrieve the Enterprise Duration3 value
|
1775
|
+
#
|
1776
|
+
# @return Enterprise Duration3 value
|
1777
|
+
def enterprise_duration3
|
1778
|
+
get_duration_value(attribute_values['enterprise_duration3'])
|
1779
|
+
end
|
1780
|
+
|
1781
|
+
# Retrieve the Enterprise Duration3 Units value
|
1782
|
+
#
|
1783
|
+
# @return Enterprise Duration3 Units value
|
1784
|
+
def enterprise_duration3_units
|
1785
|
+
attribute_values['enterprise_duration3_units']
|
1786
|
+
end
|
1787
|
+
|
1788
|
+
# Retrieve the Enterprise Duration4 value
|
1789
|
+
#
|
1790
|
+
# @return Enterprise Duration4 value
|
1791
|
+
def enterprise_duration4
|
1792
|
+
get_duration_value(attribute_values['enterprise_duration4'])
|
1793
|
+
end
|
1794
|
+
|
1795
|
+
# Retrieve the Enterprise Duration4 Units value
|
1796
|
+
#
|
1797
|
+
# @return Enterprise Duration4 Units value
|
1798
|
+
def enterprise_duration4_units
|
1799
|
+
attribute_values['enterprise_duration4_units']
|
1800
|
+
end
|
1801
|
+
|
1802
|
+
# Retrieve the Enterprise Duration5 value
|
1803
|
+
#
|
1804
|
+
# @return Enterprise Duration5 value
|
1805
|
+
def enterprise_duration5
|
1806
|
+
get_duration_value(attribute_values['enterprise_duration5'])
|
1807
|
+
end
|
1808
|
+
|
1809
|
+
# Retrieve the Enterprise Duration5 Units value
|
1810
|
+
#
|
1811
|
+
# @return Enterprise Duration5 Units value
|
1812
|
+
def enterprise_duration5_units
|
1813
|
+
attribute_values['enterprise_duration5_units']
|
1814
|
+
end
|
1815
|
+
|
1816
|
+
# Retrieve the Enterprise Duration6 value
|
1817
|
+
#
|
1818
|
+
# @return Enterprise Duration6 value
|
1819
|
+
def enterprise_duration6
|
1820
|
+
get_duration_value(attribute_values['enterprise_duration6'])
|
1821
|
+
end
|
1822
|
+
|
1823
|
+
# Retrieve the Enterprise Duration6 Units value
|
1824
|
+
#
|
1825
|
+
# @return Enterprise Duration6 Units value
|
1826
|
+
def enterprise_duration6_units
|
1827
|
+
attribute_values['enterprise_duration6_units']
|
1828
|
+
end
|
1829
|
+
|
1830
|
+
# Retrieve the Enterprise Duration7 value
|
1831
|
+
#
|
1832
|
+
# @return Enterprise Duration7 value
|
1833
|
+
def enterprise_duration7
|
1834
|
+
get_duration_value(attribute_values['enterprise_duration7'])
|
1835
|
+
end
|
1836
|
+
|
1837
|
+
# Retrieve the Enterprise Duration7 Units value
|
1838
|
+
#
|
1839
|
+
# @return Enterprise Duration7 Units value
|
1840
|
+
def enterprise_duration7_units
|
1841
|
+
attribute_values['enterprise_duration7_units']
|
1842
|
+
end
|
1843
|
+
|
1844
|
+
# Retrieve the Enterprise Duration8 value
|
1845
|
+
#
|
1846
|
+
# @return Enterprise Duration8 value
|
1847
|
+
def enterprise_duration8
|
1848
|
+
get_duration_value(attribute_values['enterprise_duration8'])
|
1849
|
+
end
|
1850
|
+
|
1851
|
+
# Retrieve the Enterprise Duration8 Units value
|
1852
|
+
#
|
1853
|
+
# @return Enterprise Duration8 Units value
|
1854
|
+
def enterprise_duration8_units
|
1855
|
+
attribute_values['enterprise_duration8_units']
|
1856
|
+
end
|
1857
|
+
|
1858
|
+
# Retrieve the Enterprise Duration9 value
|
1859
|
+
#
|
1860
|
+
# @return Enterprise Duration9 value
|
1861
|
+
def enterprise_duration9
|
1862
|
+
get_duration_value(attribute_values['enterprise_duration9'])
|
1863
|
+
end
|
1864
|
+
|
1865
|
+
# Retrieve the Enterprise Duration9 Units value
|
1866
|
+
#
|
1867
|
+
# @return Enterprise Duration9 Units value
|
1868
|
+
def enterprise_duration9_units
|
1869
|
+
attribute_values['enterprise_duration9_units']
|
1870
|
+
end
|
1871
|
+
|
1872
|
+
# Retrieve the Enterprise Flag1 value
|
1873
|
+
#
|
1874
|
+
# @return Enterprise Flag1 value
|
1875
|
+
def enterprise_flag1
|
1876
|
+
get_boolean_value(attribute_values['enterprise_flag1'])
|
1877
|
+
end
|
1878
|
+
|
1879
|
+
# Retrieve the Enterprise Flag10 value
|
1880
|
+
#
|
1881
|
+
# @return Enterprise Flag10 value
|
1882
|
+
def enterprise_flag10
|
1883
|
+
get_boolean_value(attribute_values['enterprise_flag10'])
|
1884
|
+
end
|
1885
|
+
|
1886
|
+
# Retrieve the Enterprise Flag11 value
|
1887
|
+
#
|
1888
|
+
# @return Enterprise Flag11 value
|
1889
|
+
def enterprise_flag11
|
1890
|
+
get_boolean_value(attribute_values['enterprise_flag11'])
|
1891
|
+
end
|
1892
|
+
|
1893
|
+
# Retrieve the Enterprise Flag12 value
|
1894
|
+
#
|
1895
|
+
# @return Enterprise Flag12 value
|
1896
|
+
def enterprise_flag12
|
1897
|
+
get_boolean_value(attribute_values['enterprise_flag12'])
|
1898
|
+
end
|
1899
|
+
|
1900
|
+
# Retrieve the Enterprise Flag13 value
|
1901
|
+
#
|
1902
|
+
# @return Enterprise Flag13 value
|
1903
|
+
def enterprise_flag13
|
1904
|
+
get_boolean_value(attribute_values['enterprise_flag13'])
|
1905
|
+
end
|
1906
|
+
|
1907
|
+
# Retrieve the Enterprise Flag14 value
|
1908
|
+
#
|
1909
|
+
# @return Enterprise Flag14 value
|
1910
|
+
def enterprise_flag14
|
1911
|
+
get_boolean_value(attribute_values['enterprise_flag14'])
|
1912
|
+
end
|
1913
|
+
|
1914
|
+
# Retrieve the Enterprise Flag15 value
|
1915
|
+
#
|
1916
|
+
# @return Enterprise Flag15 value
|
1917
|
+
def enterprise_flag15
|
1918
|
+
get_boolean_value(attribute_values['enterprise_flag15'])
|
1919
|
+
end
|
1920
|
+
|
1921
|
+
# Retrieve the Enterprise Flag16 value
|
1922
|
+
#
|
1923
|
+
# @return Enterprise Flag16 value
|
1924
|
+
def enterprise_flag16
|
1925
|
+
get_boolean_value(attribute_values['enterprise_flag16'])
|
1926
|
+
end
|
1927
|
+
|
1928
|
+
# Retrieve the Enterprise Flag17 value
|
1929
|
+
#
|
1930
|
+
# @return Enterprise Flag17 value
|
1931
|
+
def enterprise_flag17
|
1932
|
+
get_boolean_value(attribute_values['enterprise_flag17'])
|
1933
|
+
end
|
1934
|
+
|
1935
|
+
# Retrieve the Enterprise Flag18 value
|
1936
|
+
#
|
1937
|
+
# @return Enterprise Flag18 value
|
1938
|
+
def enterprise_flag18
|
1939
|
+
get_boolean_value(attribute_values['enterprise_flag18'])
|
1940
|
+
end
|
1941
|
+
|
1942
|
+
# Retrieve the Enterprise Flag19 value
|
1943
|
+
#
|
1944
|
+
# @return Enterprise Flag19 value
|
1945
|
+
def enterprise_flag19
|
1946
|
+
get_boolean_value(attribute_values['enterprise_flag19'])
|
1947
|
+
end
|
1948
|
+
|
1949
|
+
# Retrieve the Enterprise Flag2 value
|
1950
|
+
#
|
1951
|
+
# @return Enterprise Flag2 value
|
1952
|
+
def enterprise_flag2
|
1953
|
+
get_boolean_value(attribute_values['enterprise_flag2'])
|
1954
|
+
end
|
1955
|
+
|
1956
|
+
# Retrieve the Enterprise Flag20 value
|
1957
|
+
#
|
1958
|
+
# @return Enterprise Flag20 value
|
1959
|
+
def enterprise_flag20
|
1960
|
+
get_boolean_value(attribute_values['enterprise_flag20'])
|
1961
|
+
end
|
1962
|
+
|
1963
|
+
# Retrieve the Enterprise Flag3 value
|
1964
|
+
#
|
1965
|
+
# @return Enterprise Flag3 value
|
1966
|
+
def enterprise_flag3
|
1967
|
+
get_boolean_value(attribute_values['enterprise_flag3'])
|
1968
|
+
end
|
1969
|
+
|
1970
|
+
# Retrieve the Enterprise Flag4 value
|
1971
|
+
#
|
1972
|
+
# @return Enterprise Flag4 value
|
1973
|
+
def enterprise_flag4
|
1974
|
+
get_boolean_value(attribute_values['enterprise_flag4'])
|
1975
|
+
end
|
1976
|
+
|
1977
|
+
# Retrieve the Enterprise Flag5 value
|
1978
|
+
#
|
1979
|
+
# @return Enterprise Flag5 value
|
1980
|
+
def enterprise_flag5
|
1981
|
+
get_boolean_value(attribute_values['enterprise_flag5'])
|
1982
|
+
end
|
1983
|
+
|
1984
|
+
# Retrieve the Enterprise Flag6 value
|
1985
|
+
#
|
1986
|
+
# @return Enterprise Flag6 value
|
1987
|
+
def enterprise_flag6
|
1988
|
+
get_boolean_value(attribute_values['enterprise_flag6'])
|
1989
|
+
end
|
1990
|
+
|
1991
|
+
# Retrieve the Enterprise Flag7 value
|
1992
|
+
#
|
1993
|
+
# @return Enterprise Flag7 value
|
1994
|
+
def enterprise_flag7
|
1995
|
+
get_boolean_value(attribute_values['enterprise_flag7'])
|
1996
|
+
end
|
1997
|
+
|
1998
|
+
# Retrieve the Enterprise Flag8 value
|
1999
|
+
#
|
2000
|
+
# @return Enterprise Flag8 value
|
2001
|
+
def enterprise_flag8
|
2002
|
+
get_boolean_value(attribute_values['enterprise_flag8'])
|
2003
|
+
end
|
2004
|
+
|
2005
|
+
# Retrieve the Enterprise Flag9 value
|
2006
|
+
#
|
2007
|
+
# @return Enterprise Flag9 value
|
2008
|
+
def enterprise_flag9
|
2009
|
+
get_boolean_value(attribute_values['enterprise_flag9'])
|
2010
|
+
end
|
2011
|
+
|
2012
|
+
# Retrieve the Enterprise Is Checked Out value
|
2013
|
+
#
|
2014
|
+
# @return Enterprise Is Checked Out value
|
2015
|
+
def enterprise_is_checked_out
|
2016
|
+
get_boolean_value(attribute_values['enterprise_is_checked_out'])
|
2017
|
+
end
|
2018
|
+
|
2019
|
+
# Retrieve the Enterprise Last Modified Date value
|
2020
|
+
#
|
2021
|
+
# @return Enterprise Last Modified Date value
|
2022
|
+
def enterprise_last_modified_date
|
2023
|
+
get_date_value(attribute_values['enterprise_last_modified_date'])
|
2024
|
+
end
|
2025
|
+
|
2026
|
+
# Retrieve the Enterprise Multi Value20 value
|
2027
|
+
#
|
2028
|
+
# @return Enterprise Multi Value20 value
|
2029
|
+
def enterprise_multi_value20
|
2030
|
+
attribute_values['enterprise_multi_value20']
|
2031
|
+
end
|
2032
|
+
|
2033
|
+
# Retrieve the Enterprise Multi Value21 value
|
2034
|
+
#
|
2035
|
+
# @return Enterprise Multi Value21 value
|
2036
|
+
def enterprise_multi_value21
|
2037
|
+
attribute_values['enterprise_multi_value21']
|
2038
|
+
end
|
2039
|
+
|
2040
|
+
# Retrieve the Enterprise Multi Value22 value
|
2041
|
+
#
|
2042
|
+
# @return Enterprise Multi Value22 value
|
2043
|
+
def enterprise_multi_value22
|
2044
|
+
attribute_values['enterprise_multi_value22']
|
2045
|
+
end
|
2046
|
+
|
2047
|
+
# Retrieve the Enterprise Multi Value23 value
|
2048
|
+
#
|
2049
|
+
# @return Enterprise Multi Value23 value
|
2050
|
+
def enterprise_multi_value23
|
2051
|
+
attribute_values['enterprise_multi_value23']
|
2052
|
+
end
|
2053
|
+
|
2054
|
+
# Retrieve the Enterprise Multi Value24 value
|
2055
|
+
#
|
2056
|
+
# @return Enterprise Multi Value24 value
|
2057
|
+
def enterprise_multi_value24
|
2058
|
+
attribute_values['enterprise_multi_value24']
|
2059
|
+
end
|
2060
|
+
|
2061
|
+
# Retrieve the Enterprise Multi Value25 value
|
2062
|
+
#
|
2063
|
+
# @return Enterprise Multi Value25 value
|
2064
|
+
def enterprise_multi_value25
|
2065
|
+
attribute_values['enterprise_multi_value25']
|
2066
|
+
end
|
2067
|
+
|
2068
|
+
# Retrieve the Enterprise Multi Value26 value
|
2069
|
+
#
|
2070
|
+
# @return Enterprise Multi Value26 value
|
2071
|
+
def enterprise_multi_value26
|
2072
|
+
attribute_values['enterprise_multi_value26']
|
2073
|
+
end
|
2074
|
+
|
2075
|
+
# Retrieve the Enterprise Multi Value27 value
|
2076
|
+
#
|
2077
|
+
# @return Enterprise Multi Value27 value
|
2078
|
+
def enterprise_multi_value27
|
2079
|
+
attribute_values['enterprise_multi_value27']
|
2080
|
+
end
|
2081
|
+
|
2082
|
+
# Retrieve the Enterprise Multi Value28 value
|
2083
|
+
#
|
2084
|
+
# @return Enterprise Multi Value28 value
|
2085
|
+
def enterprise_multi_value28
|
2086
|
+
attribute_values['enterprise_multi_value28']
|
2087
|
+
end
|
2088
|
+
|
2089
|
+
# Retrieve the Enterprise Multi Value29 value
|
2090
|
+
#
|
2091
|
+
# @return Enterprise Multi Value29 value
|
2092
|
+
def enterprise_multi_value29
|
2093
|
+
attribute_values['enterprise_multi_value29']
|
2094
|
+
end
|
2095
|
+
|
2096
|
+
# Retrieve the Enterprise Name Used value
|
2097
|
+
#
|
2098
|
+
# @return Enterprise Name Used value
|
2099
|
+
def enterprise_name_used
|
2100
|
+
attribute_values['enterprise_name_used']
|
2101
|
+
end
|
2102
|
+
|
2103
|
+
# Retrieve the Enterprise Number1 value
|
2104
|
+
#
|
2105
|
+
# @return Enterprise Number1 value
|
2106
|
+
def enterprise_number1
|
2107
|
+
get_float_value(attribute_values['enterprise_number1'])
|
2108
|
+
end
|
2109
|
+
|
2110
|
+
# Retrieve the Enterprise Number10 value
|
2111
|
+
#
|
2112
|
+
# @return Enterprise Number10 value
|
2113
|
+
def enterprise_number10
|
2114
|
+
get_float_value(attribute_values['enterprise_number10'])
|
2115
|
+
end
|
2116
|
+
|
2117
|
+
# Retrieve the Enterprise Number11 value
|
2118
|
+
#
|
2119
|
+
# @return Enterprise Number11 value
|
2120
|
+
def enterprise_number11
|
2121
|
+
get_float_value(attribute_values['enterprise_number11'])
|
2122
|
+
end
|
2123
|
+
|
2124
|
+
# Retrieve the Enterprise Number12 value
|
2125
|
+
#
|
2126
|
+
# @return Enterprise Number12 value
|
2127
|
+
def enterprise_number12
|
2128
|
+
get_float_value(attribute_values['enterprise_number12'])
|
2129
|
+
end
|
2130
|
+
|
2131
|
+
# Retrieve the Enterprise Number13 value
|
2132
|
+
#
|
2133
|
+
# @return Enterprise Number13 value
|
2134
|
+
def enterprise_number13
|
2135
|
+
get_float_value(attribute_values['enterprise_number13'])
|
2136
|
+
end
|
2137
|
+
|
2138
|
+
# Retrieve the Enterprise Number14 value
|
2139
|
+
#
|
2140
|
+
# @return Enterprise Number14 value
|
2141
|
+
def enterprise_number14
|
2142
|
+
get_float_value(attribute_values['enterprise_number14'])
|
2143
|
+
end
|
2144
|
+
|
2145
|
+
# Retrieve the Enterprise Number15 value
|
2146
|
+
#
|
2147
|
+
# @return Enterprise Number15 value
|
2148
|
+
def enterprise_number15
|
2149
|
+
get_float_value(attribute_values['enterprise_number15'])
|
2150
|
+
end
|
2151
|
+
|
2152
|
+
# Retrieve the Enterprise Number16 value
|
2153
|
+
#
|
2154
|
+
# @return Enterprise Number16 value
|
2155
|
+
def enterprise_number16
|
2156
|
+
get_float_value(attribute_values['enterprise_number16'])
|
2157
|
+
end
|
2158
|
+
|
2159
|
+
# Retrieve the Enterprise Number17 value
|
2160
|
+
#
|
2161
|
+
# @return Enterprise Number17 value
|
2162
|
+
def enterprise_number17
|
2163
|
+
get_float_value(attribute_values['enterprise_number17'])
|
2164
|
+
end
|
2165
|
+
|
2166
|
+
# Retrieve the Enterprise Number18 value
|
2167
|
+
#
|
2168
|
+
# @return Enterprise Number18 value
|
2169
|
+
def enterprise_number18
|
2170
|
+
get_float_value(attribute_values['enterprise_number18'])
|
2171
|
+
end
|
2172
|
+
|
2173
|
+
# Retrieve the Enterprise Number19 value
|
2174
|
+
#
|
2175
|
+
# @return Enterprise Number19 value
|
2176
|
+
def enterprise_number19
|
2177
|
+
get_float_value(attribute_values['enterprise_number19'])
|
2178
|
+
end
|
2179
|
+
|
2180
|
+
# Retrieve the Enterprise Number2 value
|
2181
|
+
#
|
2182
|
+
# @return Enterprise Number2 value
|
2183
|
+
def enterprise_number2
|
2184
|
+
get_float_value(attribute_values['enterprise_number2'])
|
2185
|
+
end
|
2186
|
+
|
2187
|
+
# Retrieve the Enterprise Number20 value
|
2188
|
+
#
|
2189
|
+
# @return Enterprise Number20 value
|
2190
|
+
def enterprise_number20
|
2191
|
+
get_float_value(attribute_values['enterprise_number20'])
|
2192
|
+
end
|
2193
|
+
|
2194
|
+
# Retrieve the Enterprise Number21 value
|
2195
|
+
#
|
2196
|
+
# @return Enterprise Number21 value
|
2197
|
+
def enterprise_number21
|
2198
|
+
get_float_value(attribute_values['enterprise_number21'])
|
2199
|
+
end
|
2200
|
+
|
2201
|
+
# Retrieve the Enterprise Number22 value
|
2202
|
+
#
|
2203
|
+
# @return Enterprise Number22 value
|
2204
|
+
def enterprise_number22
|
2205
|
+
get_float_value(attribute_values['enterprise_number22'])
|
2206
|
+
end
|
2207
|
+
|
2208
|
+
# Retrieve the Enterprise Number23 value
|
2209
|
+
#
|
2210
|
+
# @return Enterprise Number23 value
|
2211
|
+
def enterprise_number23
|
2212
|
+
get_float_value(attribute_values['enterprise_number23'])
|
2213
|
+
end
|
2214
|
+
|
2215
|
+
# Retrieve the Enterprise Number24 value
|
2216
|
+
#
|
2217
|
+
# @return Enterprise Number24 value
|
2218
|
+
def enterprise_number24
|
2219
|
+
get_float_value(attribute_values['enterprise_number24'])
|
2220
|
+
end
|
2221
|
+
|
2222
|
+
# Retrieve the Enterprise Number25 value
|
2223
|
+
#
|
2224
|
+
# @return Enterprise Number25 value
|
2225
|
+
def enterprise_number25
|
2226
|
+
get_float_value(attribute_values['enterprise_number25'])
|
2227
|
+
end
|
2228
|
+
|
2229
|
+
# Retrieve the Enterprise Number26 value
|
2230
|
+
#
|
2231
|
+
# @return Enterprise Number26 value
|
2232
|
+
def enterprise_number26
|
2233
|
+
get_float_value(attribute_values['enterprise_number26'])
|
2234
|
+
end
|
2235
|
+
|
2236
|
+
# Retrieve the Enterprise Number27 value
|
2237
|
+
#
|
2238
|
+
# @return Enterprise Number27 value
|
2239
|
+
def enterprise_number27
|
2240
|
+
get_float_value(attribute_values['enterprise_number27'])
|
2241
|
+
end
|
2242
|
+
|
2243
|
+
# Retrieve the Enterprise Number28 value
|
2244
|
+
#
|
2245
|
+
# @return Enterprise Number28 value
|
2246
|
+
def enterprise_number28
|
2247
|
+
get_float_value(attribute_values['enterprise_number28'])
|
2248
|
+
end
|
2249
|
+
|
2250
|
+
# Retrieve the Enterprise Number29 value
|
2251
|
+
#
|
2252
|
+
# @return Enterprise Number29 value
|
2253
|
+
def enterprise_number29
|
2254
|
+
get_float_value(attribute_values['enterprise_number29'])
|
2255
|
+
end
|
2256
|
+
|
2257
|
+
# Retrieve the Enterprise Number3 value
|
2258
|
+
#
|
2259
|
+
# @return Enterprise Number3 value
|
2260
|
+
def enterprise_number3
|
2261
|
+
get_float_value(attribute_values['enterprise_number3'])
|
2262
|
+
end
|
2263
|
+
|
2264
|
+
# Retrieve the Enterprise Number30 value
|
2265
|
+
#
|
2266
|
+
# @return Enterprise Number30 value
|
2267
|
+
def enterprise_number30
|
2268
|
+
get_float_value(attribute_values['enterprise_number30'])
|
2269
|
+
end
|
2270
|
+
|
2271
|
+
# Retrieve the Enterprise Number31 value
|
2272
|
+
#
|
2273
|
+
# @return Enterprise Number31 value
|
2274
|
+
def enterprise_number31
|
2275
|
+
get_float_value(attribute_values['enterprise_number31'])
|
2276
|
+
end
|
2277
|
+
|
2278
|
+
# Retrieve the Enterprise Number32 value
|
2279
|
+
#
|
2280
|
+
# @return Enterprise Number32 value
|
2281
|
+
def enterprise_number32
|
2282
|
+
get_float_value(attribute_values['enterprise_number32'])
|
2283
|
+
end
|
2284
|
+
|
2285
|
+
# Retrieve the Enterprise Number33 value
|
2286
|
+
#
|
2287
|
+
# @return Enterprise Number33 value
|
2288
|
+
def enterprise_number33
|
2289
|
+
get_float_value(attribute_values['enterprise_number33'])
|
2290
|
+
end
|
2291
|
+
|
2292
|
+
# Retrieve the Enterprise Number34 value
|
2293
|
+
#
|
2294
|
+
# @return Enterprise Number34 value
|
2295
|
+
def enterprise_number34
|
2296
|
+
get_float_value(attribute_values['enterprise_number34'])
|
2297
|
+
end
|
2298
|
+
|
2299
|
+
# Retrieve the Enterprise Number35 value
|
2300
|
+
#
|
2301
|
+
# @return Enterprise Number35 value
|
2302
|
+
def enterprise_number35
|
2303
|
+
get_float_value(attribute_values['enterprise_number35'])
|
2304
|
+
end
|
2305
|
+
|
2306
|
+
# Retrieve the Enterprise Number36 value
|
2307
|
+
#
|
2308
|
+
# @return Enterprise Number36 value
|
2309
|
+
def enterprise_number36
|
2310
|
+
get_float_value(attribute_values['enterprise_number36'])
|
2311
|
+
end
|
2312
|
+
|
2313
|
+
# Retrieve the Enterprise Number37 value
|
2314
|
+
#
|
2315
|
+
# @return Enterprise Number37 value
|
2316
|
+
def enterprise_number37
|
2317
|
+
get_float_value(attribute_values['enterprise_number37'])
|
2318
|
+
end
|
2319
|
+
|
2320
|
+
# Retrieve the Enterprise Number38 value
|
2321
|
+
#
|
2322
|
+
# @return Enterprise Number38 value
|
2323
|
+
def enterprise_number38
|
2324
|
+
get_float_value(attribute_values['enterprise_number38'])
|
2325
|
+
end
|
2326
|
+
|
2327
|
+
# Retrieve the Enterprise Number39 value
|
2328
|
+
#
|
2329
|
+
# @return Enterprise Number39 value
|
2330
|
+
def enterprise_number39
|
2331
|
+
get_float_value(attribute_values['enterprise_number39'])
|
2332
|
+
end
|
2333
|
+
|
2334
|
+
# Retrieve the Enterprise Number4 value
|
2335
|
+
#
|
2336
|
+
# @return Enterprise Number4 value
|
2337
|
+
def enterprise_number4
|
2338
|
+
get_float_value(attribute_values['enterprise_number4'])
|
2339
|
+
end
|
2340
|
+
|
2341
|
+
# Retrieve the Enterprise Number40 value
|
2342
|
+
#
|
2343
|
+
# @return Enterprise Number40 value
|
2344
|
+
def enterprise_number40
|
2345
|
+
get_float_value(attribute_values['enterprise_number40'])
|
2346
|
+
end
|
2347
|
+
|
2348
|
+
# Retrieve the Enterprise Number5 value
|
2349
|
+
#
|
2350
|
+
# @return Enterprise Number5 value
|
2351
|
+
def enterprise_number5
|
2352
|
+
get_float_value(attribute_values['enterprise_number5'])
|
2353
|
+
end
|
2354
|
+
|
2355
|
+
# Retrieve the Enterprise Number6 value
|
2356
|
+
#
|
2357
|
+
# @return Enterprise Number6 value
|
2358
|
+
def enterprise_number6
|
2359
|
+
get_float_value(attribute_values['enterprise_number6'])
|
2360
|
+
end
|
2361
|
+
|
2362
|
+
# Retrieve the Enterprise Number7 value
|
2363
|
+
#
|
2364
|
+
# @return Enterprise Number7 value
|
2365
|
+
def enterprise_number7
|
2366
|
+
get_float_value(attribute_values['enterprise_number7'])
|
2367
|
+
end
|
2368
|
+
|
2369
|
+
# Retrieve the Enterprise Number8 value
|
2370
|
+
#
|
2371
|
+
# @return Enterprise Number8 value
|
2372
|
+
def enterprise_number8
|
2373
|
+
get_float_value(attribute_values['enterprise_number8'])
|
2374
|
+
end
|
2375
|
+
|
2376
|
+
# Retrieve the Enterprise Number9 value
|
2377
|
+
#
|
2378
|
+
# @return Enterprise Number9 value
|
2379
|
+
def enterprise_number9
|
2380
|
+
get_float_value(attribute_values['enterprise_number9'])
|
2381
|
+
end
|
2382
|
+
|
2383
|
+
# Retrieve the Enterprise Outline Code1 value
|
2384
|
+
#
|
2385
|
+
# @return Enterprise Outline Code1 value
|
2386
|
+
def enterprise_outline_code1
|
2387
|
+
attribute_values['enterprise_outline_code1']
|
2388
|
+
end
|
2389
|
+
|
2390
|
+
# Retrieve the Enterprise Outline Code10 value
|
2391
|
+
#
|
2392
|
+
# @return Enterprise Outline Code10 value
|
2393
|
+
def enterprise_outline_code10
|
2394
|
+
attribute_values['enterprise_outline_code10']
|
2395
|
+
end
|
2396
|
+
|
2397
|
+
# Retrieve the Enterprise Outline Code11 value
|
2398
|
+
#
|
2399
|
+
# @return Enterprise Outline Code11 value
|
2400
|
+
def enterprise_outline_code11
|
2401
|
+
attribute_values['enterprise_outline_code11']
|
2402
|
+
end
|
2403
|
+
|
2404
|
+
# Retrieve the Enterprise Outline Code12 value
|
2405
|
+
#
|
2406
|
+
# @return Enterprise Outline Code12 value
|
2407
|
+
def enterprise_outline_code12
|
2408
|
+
attribute_values['enterprise_outline_code12']
|
2409
|
+
end
|
2410
|
+
|
2411
|
+
# Retrieve the Enterprise Outline Code13 value
|
2412
|
+
#
|
2413
|
+
# @return Enterprise Outline Code13 value
|
2414
|
+
def enterprise_outline_code13
|
2415
|
+
attribute_values['enterprise_outline_code13']
|
2416
|
+
end
|
2417
|
+
|
2418
|
+
# Retrieve the Enterprise Outline Code14 value
|
2419
|
+
#
|
2420
|
+
# @return Enterprise Outline Code14 value
|
2421
|
+
def enterprise_outline_code14
|
2422
|
+
attribute_values['enterprise_outline_code14']
|
2423
|
+
end
|
2424
|
+
|
2425
|
+
# Retrieve the Enterprise Outline Code15 value
|
2426
|
+
#
|
2427
|
+
# @return Enterprise Outline Code15 value
|
2428
|
+
def enterprise_outline_code15
|
2429
|
+
attribute_values['enterprise_outline_code15']
|
2430
|
+
end
|
2431
|
+
|
2432
|
+
# Retrieve the Enterprise Outline Code16 value
|
2433
|
+
#
|
2434
|
+
# @return Enterprise Outline Code16 value
|
2435
|
+
def enterprise_outline_code16
|
2436
|
+
attribute_values['enterprise_outline_code16']
|
2437
|
+
end
|
2438
|
+
|
2439
|
+
# Retrieve the Enterprise Outline Code17 value
|
2440
|
+
#
|
2441
|
+
# @return Enterprise Outline Code17 value
|
2442
|
+
def enterprise_outline_code17
|
2443
|
+
attribute_values['enterprise_outline_code17']
|
2444
|
+
end
|
2445
|
+
|
2446
|
+
# Retrieve the Enterprise Outline Code18 value
|
2447
|
+
#
|
2448
|
+
# @return Enterprise Outline Code18 value
|
2449
|
+
def enterprise_outline_code18
|
2450
|
+
attribute_values['enterprise_outline_code18']
|
2451
|
+
end
|
2452
|
+
|
2453
|
+
# Retrieve the Enterprise Outline Code19 value
|
2454
|
+
#
|
2455
|
+
# @return Enterprise Outline Code19 value
|
2456
|
+
def enterprise_outline_code19
|
2457
|
+
attribute_values['enterprise_outline_code19']
|
2458
|
+
end
|
2459
|
+
|
2460
|
+
# Retrieve the Enterprise Outline Code2 value
|
2461
|
+
#
|
2462
|
+
# @return Enterprise Outline Code2 value
|
2463
|
+
def enterprise_outline_code2
|
2464
|
+
attribute_values['enterprise_outline_code2']
|
2465
|
+
end
|
2466
|
+
|
2467
|
+
# Retrieve the Enterprise Outline Code20 value
|
2468
|
+
#
|
2469
|
+
# @return Enterprise Outline Code20 value
|
2470
|
+
def enterprise_outline_code20
|
2471
|
+
attribute_values['enterprise_outline_code20']
|
2472
|
+
end
|
2473
|
+
|
2474
|
+
# Retrieve the Enterprise Outline Code21 value
|
2475
|
+
#
|
2476
|
+
# @return Enterprise Outline Code21 value
|
2477
|
+
def enterprise_outline_code21
|
2478
|
+
attribute_values['enterprise_outline_code21']
|
2479
|
+
end
|
2480
|
+
|
2481
|
+
# Retrieve the Enterprise Outline Code22 value
|
2482
|
+
#
|
2483
|
+
# @return Enterprise Outline Code22 value
|
2484
|
+
def enterprise_outline_code22
|
2485
|
+
attribute_values['enterprise_outline_code22']
|
2486
|
+
end
|
2487
|
+
|
2488
|
+
# Retrieve the Enterprise Outline Code23 value
|
2489
|
+
#
|
2490
|
+
# @return Enterprise Outline Code23 value
|
2491
|
+
def enterprise_outline_code23
|
2492
|
+
attribute_values['enterprise_outline_code23']
|
2493
|
+
end
|
2494
|
+
|
2495
|
+
# Retrieve the Enterprise Outline Code24 value
|
2496
|
+
#
|
2497
|
+
# @return Enterprise Outline Code24 value
|
2498
|
+
def enterprise_outline_code24
|
2499
|
+
attribute_values['enterprise_outline_code24']
|
2500
|
+
end
|
2501
|
+
|
2502
|
+
# Retrieve the Enterprise Outline Code25 value
|
2503
|
+
#
|
2504
|
+
# @return Enterprise Outline Code25 value
|
2505
|
+
def enterprise_outline_code25
|
2506
|
+
attribute_values['enterprise_outline_code25']
|
2507
|
+
end
|
2508
|
+
|
2509
|
+
# Retrieve the Enterprise Outline Code26 value
|
2510
|
+
#
|
2511
|
+
# @return Enterprise Outline Code26 value
|
2512
|
+
def enterprise_outline_code26
|
2513
|
+
attribute_values['enterprise_outline_code26']
|
2514
|
+
end
|
2515
|
+
|
2516
|
+
# Retrieve the Enterprise Outline Code27 value
|
2517
|
+
#
|
2518
|
+
# @return Enterprise Outline Code27 value
|
2519
|
+
def enterprise_outline_code27
|
2520
|
+
attribute_values['enterprise_outline_code27']
|
2521
|
+
end
|
2522
|
+
|
2523
|
+
# Retrieve the Enterprise Outline Code28 value
|
2524
|
+
#
|
2525
|
+
# @return Enterprise Outline Code28 value
|
2526
|
+
def enterprise_outline_code28
|
2527
|
+
attribute_values['enterprise_outline_code28']
|
2528
|
+
end
|
2529
|
+
|
2530
|
+
# Retrieve the Enterprise Outline Code29 value
|
2531
|
+
#
|
2532
|
+
# @return Enterprise Outline Code29 value
|
2533
|
+
def enterprise_outline_code29
|
2534
|
+
attribute_values['enterprise_outline_code29']
|
2535
|
+
end
|
2536
|
+
|
2537
|
+
# Retrieve the Enterprise Outline Code3 value
|
2538
|
+
#
|
2539
|
+
# @return Enterprise Outline Code3 value
|
2540
|
+
def enterprise_outline_code3
|
2541
|
+
attribute_values['enterprise_outline_code3']
|
2542
|
+
end
|
2543
|
+
|
2544
|
+
# Retrieve the Enterprise Outline Code4 value
|
2545
|
+
#
|
2546
|
+
# @return Enterprise Outline Code4 value
|
2547
|
+
def enterprise_outline_code4
|
2548
|
+
attribute_values['enterprise_outline_code4']
|
2549
|
+
end
|
2550
|
+
|
2551
|
+
# Retrieve the Enterprise Outline Code5 value
|
2552
|
+
#
|
2553
|
+
# @return Enterprise Outline Code5 value
|
2554
|
+
def enterprise_outline_code5
|
2555
|
+
attribute_values['enterprise_outline_code5']
|
2556
|
+
end
|
2557
|
+
|
2558
|
+
# Retrieve the Enterprise Outline Code6 value
|
2559
|
+
#
|
2560
|
+
# @return Enterprise Outline Code6 value
|
2561
|
+
def enterprise_outline_code6
|
2562
|
+
attribute_values['enterprise_outline_code6']
|
2563
|
+
end
|
2564
|
+
|
2565
|
+
# Retrieve the Enterprise Outline Code7 value
|
2566
|
+
#
|
2567
|
+
# @return Enterprise Outline Code7 value
|
2568
|
+
def enterprise_outline_code7
|
2569
|
+
attribute_values['enterprise_outline_code7']
|
2570
|
+
end
|
2571
|
+
|
2572
|
+
# Retrieve the Enterprise Outline Code8 value
|
2573
|
+
#
|
2574
|
+
# @return Enterprise Outline Code8 value
|
2575
|
+
def enterprise_outline_code8
|
2576
|
+
attribute_values['enterprise_outline_code8']
|
2577
|
+
end
|
2578
|
+
|
2579
|
+
# Retrieve the Enterprise Outline Code9 value
|
2580
|
+
#
|
2581
|
+
# @return Enterprise Outline Code9 value
|
2582
|
+
def enterprise_outline_code9
|
2583
|
+
attribute_values['enterprise_outline_code9']
|
2584
|
+
end
|
2585
|
+
|
2586
|
+
# Retrieve the Enterprise RBS value
|
2587
|
+
#
|
2588
|
+
# @return Enterprise RBS value
|
2589
|
+
def enterprise_rbs
|
2590
|
+
attribute_values['enterprise_rbs']
|
2591
|
+
end
|
2592
|
+
|
2593
|
+
# Retrieve the Enterprise Required Values value
|
2594
|
+
#
|
2595
|
+
# @return Enterprise Required Values value
|
2596
|
+
def enterprise_required_values
|
2597
|
+
attribute_values['enterprise_required_values']
|
2598
|
+
end
|
2599
|
+
|
2600
|
+
# Retrieve the Enterprise Team Member value
|
2601
|
+
#
|
2602
|
+
# @return Enterprise Team Member value
|
2603
|
+
def enterprise_team_member
|
2604
|
+
attribute_values['enterprise_team_member']
|
2605
|
+
end
|
2606
|
+
|
2607
|
+
# Retrieve the Enterprise Text1 value
|
2608
|
+
#
|
2609
|
+
# @return Enterprise Text1 value
|
2610
|
+
def enterprise_text1
|
2611
|
+
attribute_values['enterprise_text1']
|
2612
|
+
end
|
2613
|
+
|
2614
|
+
# Retrieve the Enterprise Text10 value
|
2615
|
+
#
|
2616
|
+
# @return Enterprise Text10 value
|
2617
|
+
def enterprise_text10
|
2618
|
+
attribute_values['enterprise_text10']
|
2619
|
+
end
|
2620
|
+
|
2621
|
+
# Retrieve the Enterprise Text11 value
|
2622
|
+
#
|
2623
|
+
# @return Enterprise Text11 value
|
2624
|
+
def enterprise_text11
|
2625
|
+
attribute_values['enterprise_text11']
|
2626
|
+
end
|
2627
|
+
|
2628
|
+
# Retrieve the Enterprise Text12 value
|
2629
|
+
#
|
2630
|
+
# @return Enterprise Text12 value
|
2631
|
+
def enterprise_text12
|
2632
|
+
attribute_values['enterprise_text12']
|
2633
|
+
end
|
2634
|
+
|
2635
|
+
# Retrieve the Enterprise Text13 value
|
2636
|
+
#
|
2637
|
+
# @return Enterprise Text13 value
|
2638
|
+
def enterprise_text13
|
2639
|
+
attribute_values['enterprise_text13']
|
2640
|
+
end
|
2641
|
+
|
2642
|
+
# Retrieve the Enterprise Text14 value
|
2643
|
+
#
|
2644
|
+
# @return Enterprise Text14 value
|
2645
|
+
def enterprise_text14
|
2646
|
+
attribute_values['enterprise_text14']
|
2647
|
+
end
|
2648
|
+
|
2649
|
+
# Retrieve the Enterprise Text15 value
|
2650
|
+
#
|
2651
|
+
# @return Enterprise Text15 value
|
2652
|
+
def enterprise_text15
|
2653
|
+
attribute_values['enterprise_text15']
|
2654
|
+
end
|
2655
|
+
|
2656
|
+
# Retrieve the Enterprise Text16 value
|
2657
|
+
#
|
2658
|
+
# @return Enterprise Text16 value
|
2659
|
+
def enterprise_text16
|
2660
|
+
attribute_values['enterprise_text16']
|
2661
|
+
end
|
2662
|
+
|
2663
|
+
# Retrieve the Enterprise Text17 value
|
2664
|
+
#
|
2665
|
+
# @return Enterprise Text17 value
|
2666
|
+
def enterprise_text17
|
2667
|
+
attribute_values['enterprise_text17']
|
2668
|
+
end
|
2669
|
+
|
2670
|
+
# Retrieve the Enterprise Text18 value
|
2671
|
+
#
|
2672
|
+
# @return Enterprise Text18 value
|
2673
|
+
def enterprise_text18
|
2674
|
+
attribute_values['enterprise_text18']
|
2675
|
+
end
|
2676
|
+
|
2677
|
+
# Retrieve the Enterprise Text19 value
|
2678
|
+
#
|
2679
|
+
# @return Enterprise Text19 value
|
2680
|
+
def enterprise_text19
|
2681
|
+
attribute_values['enterprise_text19']
|
2682
|
+
end
|
2683
|
+
|
2684
|
+
# Retrieve the Enterprise Text2 value
|
2685
|
+
#
|
2686
|
+
# @return Enterprise Text2 value
|
2687
|
+
def enterprise_text2
|
2688
|
+
attribute_values['enterprise_text2']
|
2689
|
+
end
|
2690
|
+
|
2691
|
+
# Retrieve the Enterprise Text20 value
|
2692
|
+
#
|
2693
|
+
# @return Enterprise Text20 value
|
2694
|
+
def enterprise_text20
|
2695
|
+
attribute_values['enterprise_text20']
|
2696
|
+
end
|
2697
|
+
|
2698
|
+
# Retrieve the Enterprise Text21 value
|
2699
|
+
#
|
2700
|
+
# @return Enterprise Text21 value
|
2701
|
+
def enterprise_text21
|
2702
|
+
attribute_values['enterprise_text21']
|
2703
|
+
end
|
2704
|
+
|
2705
|
+
# Retrieve the Enterprise Text22 value
|
2706
|
+
#
|
2707
|
+
# @return Enterprise Text22 value
|
2708
|
+
def enterprise_text22
|
2709
|
+
attribute_values['enterprise_text22']
|
2710
|
+
end
|
2711
|
+
|
2712
|
+
# Retrieve the Enterprise Text23 value
|
2713
|
+
#
|
2714
|
+
# @return Enterprise Text23 value
|
2715
|
+
def enterprise_text23
|
2716
|
+
attribute_values['enterprise_text23']
|
2717
|
+
end
|
2718
|
+
|
2719
|
+
# Retrieve the Enterprise Text24 value
|
2720
|
+
#
|
2721
|
+
# @return Enterprise Text24 value
|
2722
|
+
def enterprise_text24
|
2723
|
+
attribute_values['enterprise_text24']
|
2724
|
+
end
|
2725
|
+
|
2726
|
+
# Retrieve the Enterprise Text25 value
|
2727
|
+
#
|
2728
|
+
# @return Enterprise Text25 value
|
2729
|
+
def enterprise_text25
|
2730
|
+
attribute_values['enterprise_text25']
|
2731
|
+
end
|
2732
|
+
|
2733
|
+
# Retrieve the Enterprise Text26 value
|
2734
|
+
#
|
2735
|
+
# @return Enterprise Text26 value
|
2736
|
+
def enterprise_text26
|
2737
|
+
attribute_values['enterprise_text26']
|
2738
|
+
end
|
2739
|
+
|
2740
|
+
# Retrieve the Enterprise Text27 value
|
2741
|
+
#
|
2742
|
+
# @return Enterprise Text27 value
|
2743
|
+
def enterprise_text27
|
2744
|
+
attribute_values['enterprise_text27']
|
2745
|
+
end
|
2746
|
+
|
2747
|
+
# Retrieve the Enterprise Text28 value
|
2748
|
+
#
|
2749
|
+
# @return Enterprise Text28 value
|
2750
|
+
def enterprise_text28
|
2751
|
+
attribute_values['enterprise_text28']
|
2752
|
+
end
|
2753
|
+
|
2754
|
+
# Retrieve the Enterprise Text29 value
|
2755
|
+
#
|
2756
|
+
# @return Enterprise Text29 value
|
2757
|
+
def enterprise_text29
|
2758
|
+
attribute_values['enterprise_text29']
|
2759
|
+
end
|
2760
|
+
|
2761
|
+
# Retrieve the Enterprise Text3 value
|
2762
|
+
#
|
2763
|
+
# @return Enterprise Text3 value
|
2764
|
+
def enterprise_text3
|
2765
|
+
attribute_values['enterprise_text3']
|
2766
|
+
end
|
2767
|
+
|
2768
|
+
# Retrieve the Enterprise Text30 value
|
2769
|
+
#
|
2770
|
+
# @return Enterprise Text30 value
|
2771
|
+
def enterprise_text30
|
2772
|
+
attribute_values['enterprise_text30']
|
2773
|
+
end
|
2774
|
+
|
2775
|
+
# Retrieve the Enterprise Text31 value
|
2776
|
+
#
|
2777
|
+
# @return Enterprise Text31 value
|
2778
|
+
def enterprise_text31
|
2779
|
+
attribute_values['enterprise_text31']
|
2780
|
+
end
|
2781
|
+
|
2782
|
+
# Retrieve the Enterprise Text32 value
|
2783
|
+
#
|
2784
|
+
# @return Enterprise Text32 value
|
2785
|
+
def enterprise_text32
|
2786
|
+
attribute_values['enterprise_text32']
|
2787
|
+
end
|
2788
|
+
|
2789
|
+
# Retrieve the Enterprise Text33 value
|
2790
|
+
#
|
2791
|
+
# @return Enterprise Text33 value
|
2792
|
+
def enterprise_text33
|
2793
|
+
attribute_values['enterprise_text33']
|
2794
|
+
end
|
2795
|
+
|
2796
|
+
# Retrieve the Enterprise Text34 value
|
2797
|
+
#
|
2798
|
+
# @return Enterprise Text34 value
|
2799
|
+
def enterprise_text34
|
2800
|
+
attribute_values['enterprise_text34']
|
2801
|
+
end
|
2802
|
+
|
2803
|
+
# Retrieve the Enterprise Text35 value
|
2804
|
+
#
|
2805
|
+
# @return Enterprise Text35 value
|
2806
|
+
def enterprise_text35
|
2807
|
+
attribute_values['enterprise_text35']
|
2808
|
+
end
|
2809
|
+
|
2810
|
+
# Retrieve the Enterprise Text36 value
|
2811
|
+
#
|
2812
|
+
# @return Enterprise Text36 value
|
2813
|
+
def enterprise_text36
|
2814
|
+
attribute_values['enterprise_text36']
|
2815
|
+
end
|
2816
|
+
|
2817
|
+
# Retrieve the Enterprise Text37 value
|
2818
|
+
#
|
2819
|
+
# @return Enterprise Text37 value
|
2820
|
+
def enterprise_text37
|
2821
|
+
attribute_values['enterprise_text37']
|
2822
|
+
end
|
2823
|
+
|
2824
|
+
# Retrieve the Enterprise Text38 value
|
2825
|
+
#
|
2826
|
+
# @return Enterprise Text38 value
|
2827
|
+
def enterprise_text38
|
2828
|
+
attribute_values['enterprise_text38']
|
2829
|
+
end
|
2830
|
+
|
2831
|
+
# Retrieve the Enterprise Text39 value
|
2832
|
+
#
|
2833
|
+
# @return Enterprise Text39 value
|
2834
|
+
def enterprise_text39
|
2835
|
+
attribute_values['enterprise_text39']
|
2836
|
+
end
|
2837
|
+
|
2838
|
+
# Retrieve the Enterprise Text4 value
|
2839
|
+
#
|
2840
|
+
# @return Enterprise Text4 value
|
2841
|
+
def enterprise_text4
|
2842
|
+
attribute_values['enterprise_text4']
|
2843
|
+
end
|
2844
|
+
|
2845
|
+
# Retrieve the Enterprise Text40 value
|
2846
|
+
#
|
2847
|
+
# @return Enterprise Text40 value
|
2848
|
+
def enterprise_text40
|
2849
|
+
attribute_values['enterprise_text40']
|
2850
|
+
end
|
2851
|
+
|
2852
|
+
# Retrieve the Enterprise Text5 value
|
2853
|
+
#
|
2854
|
+
# @return Enterprise Text5 value
|
2855
|
+
def enterprise_text5
|
2856
|
+
attribute_values['enterprise_text5']
|
2857
|
+
end
|
2858
|
+
|
2859
|
+
# Retrieve the Enterprise Text6 value
|
2860
|
+
#
|
2861
|
+
# @return Enterprise Text6 value
|
2862
|
+
def enterprise_text6
|
2863
|
+
attribute_values['enterprise_text6']
|
2864
|
+
end
|
2865
|
+
|
2866
|
+
# Retrieve the Enterprise Text7 value
|
2867
|
+
#
|
2868
|
+
# @return Enterprise Text7 value
|
2869
|
+
def enterprise_text7
|
2870
|
+
attribute_values['enterprise_text7']
|
2871
|
+
end
|
2872
|
+
|
2873
|
+
# Retrieve the Enterprise Text8 value
|
2874
|
+
#
|
2875
|
+
# @return Enterprise Text8 value
|
2876
|
+
def enterprise_text8
|
2877
|
+
attribute_values['enterprise_text8']
|
2878
|
+
end
|
2879
|
+
|
2880
|
+
# Retrieve the Enterprise Text9 value
|
2881
|
+
#
|
2882
|
+
# @return Enterprise Text9 value
|
2883
|
+
def enterprise_text9
|
2884
|
+
attribute_values['enterprise_text9']
|
2885
|
+
end
|
2886
|
+
|
2887
|
+
# Retrieve the Enterprise Unique ID value
|
2888
|
+
#
|
2889
|
+
# @return Enterprise Unique ID value
|
2890
|
+
def enterprise_unique_id
|
2891
|
+
get_integer_value(attribute_values['enterprise_unique_id'])
|
2892
|
+
end
|
2893
|
+
|
2894
|
+
# Retrieve the Error Message value
|
2895
|
+
#
|
2896
|
+
# @return Error Message value
|
2897
|
+
def error_message
|
2898
|
+
attribute_values['error_message']
|
2899
|
+
end
|
2900
|
+
|
2901
|
+
# Retrieve the Expenses Only value
|
2902
|
+
#
|
2903
|
+
# @return Expenses Only value
|
2904
|
+
def expenses_only
|
2905
|
+
get_boolean_value(attribute_values['expenses_only'])
|
2906
|
+
end
|
2907
|
+
|
2908
|
+
# Retrieve the Finish value
|
2909
|
+
#
|
2910
|
+
# @return Finish value
|
2911
|
+
def finish
|
2912
|
+
get_date_value(attribute_values['finish'])
|
2913
|
+
end
|
2914
|
+
|
2915
|
+
# Retrieve the Finish1 value
|
2916
|
+
#
|
2917
|
+
# @return Finish1 value
|
2918
|
+
def finish1
|
2919
|
+
get_date_value(attribute_values['finish1'])
|
2920
|
+
end
|
2921
|
+
|
2922
|
+
# Retrieve the Finish10 value
|
2923
|
+
#
|
2924
|
+
# @return Finish10 value
|
2925
|
+
def finish10
|
2926
|
+
get_date_value(attribute_values['finish10'])
|
2927
|
+
end
|
2928
|
+
|
2929
|
+
# Retrieve the Finish2 value
|
2930
|
+
#
|
2931
|
+
# @return Finish2 value
|
2932
|
+
def finish2
|
2933
|
+
get_date_value(attribute_values['finish2'])
|
2934
|
+
end
|
2935
|
+
|
2936
|
+
# Retrieve the Finish3 value
|
2937
|
+
#
|
2938
|
+
# @return Finish3 value
|
2939
|
+
def finish3
|
2940
|
+
get_date_value(attribute_values['finish3'])
|
2941
|
+
end
|
2942
|
+
|
2943
|
+
# Retrieve the Finish4 value
|
2944
|
+
#
|
2945
|
+
# @return Finish4 value
|
2946
|
+
def finish4
|
2947
|
+
get_date_value(attribute_values['finish4'])
|
2948
|
+
end
|
2949
|
+
|
2950
|
+
# Retrieve the Finish5 value
|
2951
|
+
#
|
2952
|
+
# @return Finish5 value
|
2953
|
+
def finish5
|
2954
|
+
get_date_value(attribute_values['finish5'])
|
2955
|
+
end
|
2956
|
+
|
2957
|
+
# Retrieve the Finish6 value
|
2958
|
+
#
|
2959
|
+
# @return Finish6 value
|
2960
|
+
def finish6
|
2961
|
+
get_date_value(attribute_values['finish6'])
|
2962
|
+
end
|
2963
|
+
|
2964
|
+
# Retrieve the Finish7 value
|
2965
|
+
#
|
2966
|
+
# @return Finish7 value
|
2967
|
+
def finish7
|
2968
|
+
get_date_value(attribute_values['finish7'])
|
2969
|
+
end
|
2970
|
+
|
2971
|
+
# Retrieve the Finish8 value
|
2972
|
+
#
|
2973
|
+
# @return Finish8 value
|
2974
|
+
def finish8
|
2975
|
+
get_date_value(attribute_values['finish8'])
|
2976
|
+
end
|
2977
|
+
|
2978
|
+
# Retrieve the Finish9 value
|
2979
|
+
#
|
2980
|
+
# @return Finish9 value
|
2981
|
+
def finish9
|
2982
|
+
get_date_value(attribute_values['finish9'])
|
2983
|
+
end
|
2984
|
+
|
2985
|
+
# Retrieve the Flag1 value
|
2986
|
+
#
|
2987
|
+
# @return Flag1 value
|
2988
|
+
def flag1
|
2989
|
+
get_boolean_value(attribute_values['flag1'])
|
2990
|
+
end
|
2991
|
+
|
2992
|
+
# Retrieve the Flag10 value
|
2993
|
+
#
|
2994
|
+
# @return Flag10 value
|
2995
|
+
def flag10
|
2996
|
+
get_boolean_value(attribute_values['flag10'])
|
2997
|
+
end
|
2998
|
+
|
2999
|
+
# Retrieve the Flag11 value
|
3000
|
+
#
|
3001
|
+
# @return Flag11 value
|
3002
|
+
def flag11
|
3003
|
+
get_boolean_value(attribute_values['flag11'])
|
3004
|
+
end
|
3005
|
+
|
3006
|
+
# Retrieve the Flag12 value
|
3007
|
+
#
|
3008
|
+
# @return Flag12 value
|
3009
|
+
def flag12
|
3010
|
+
get_boolean_value(attribute_values['flag12'])
|
3011
|
+
end
|
3012
|
+
|
3013
|
+
# Retrieve the Flag13 value
|
3014
|
+
#
|
3015
|
+
# @return Flag13 value
|
3016
|
+
def flag13
|
3017
|
+
get_boolean_value(attribute_values['flag13'])
|
3018
|
+
end
|
3019
|
+
|
3020
|
+
# Retrieve the Flag14 value
|
3021
|
+
#
|
3022
|
+
# @return Flag14 value
|
3023
|
+
def flag14
|
3024
|
+
get_boolean_value(attribute_values['flag14'])
|
3025
|
+
end
|
3026
|
+
|
3027
|
+
# Retrieve the Flag15 value
|
3028
|
+
#
|
3029
|
+
# @return Flag15 value
|
3030
|
+
def flag15
|
3031
|
+
get_boolean_value(attribute_values['flag15'])
|
3032
|
+
end
|
3033
|
+
|
3034
|
+
# Retrieve the Flag16 value
|
3035
|
+
#
|
3036
|
+
# @return Flag16 value
|
3037
|
+
def flag16
|
3038
|
+
get_boolean_value(attribute_values['flag16'])
|
3039
|
+
end
|
3040
|
+
|
3041
|
+
# Retrieve the Flag17 value
|
3042
|
+
#
|
3043
|
+
# @return Flag17 value
|
3044
|
+
def flag17
|
3045
|
+
get_boolean_value(attribute_values['flag17'])
|
3046
|
+
end
|
3047
|
+
|
3048
|
+
# Retrieve the Flag18 value
|
3049
|
+
#
|
3050
|
+
# @return Flag18 value
|
3051
|
+
def flag18
|
3052
|
+
get_boolean_value(attribute_values['flag18'])
|
3053
|
+
end
|
3054
|
+
|
3055
|
+
# Retrieve the Flag19 value
|
3056
|
+
#
|
3057
|
+
# @return Flag19 value
|
3058
|
+
def flag19
|
3059
|
+
get_boolean_value(attribute_values['flag19'])
|
3060
|
+
end
|
3061
|
+
|
3062
|
+
# Retrieve the Flag2 value
|
3063
|
+
#
|
3064
|
+
# @return Flag2 value
|
3065
|
+
def flag2
|
3066
|
+
get_boolean_value(attribute_values['flag2'])
|
3067
|
+
end
|
3068
|
+
|
3069
|
+
# Retrieve the Flag20 value
|
3070
|
+
#
|
3071
|
+
# @return Flag20 value
|
3072
|
+
def flag20
|
3073
|
+
get_boolean_value(attribute_values['flag20'])
|
3074
|
+
end
|
3075
|
+
|
3076
|
+
# Retrieve the Flag3 value
|
3077
|
+
#
|
3078
|
+
# @return Flag3 value
|
3079
|
+
def flag3
|
3080
|
+
get_boolean_value(attribute_values['flag3'])
|
3081
|
+
end
|
3082
|
+
|
3083
|
+
# Retrieve the Flag4 value
|
3084
|
+
#
|
3085
|
+
# @return Flag4 value
|
3086
|
+
def flag4
|
3087
|
+
get_boolean_value(attribute_values['flag4'])
|
3088
|
+
end
|
3089
|
+
|
3090
|
+
# Retrieve the Flag5 value
|
3091
|
+
#
|
3092
|
+
# @return Flag5 value
|
3093
|
+
def flag5
|
3094
|
+
get_boolean_value(attribute_values['flag5'])
|
3095
|
+
end
|
3096
|
+
|
3097
|
+
# Retrieve the Flag6 value
|
3098
|
+
#
|
3099
|
+
# @return Flag6 value
|
3100
|
+
def flag6
|
3101
|
+
get_boolean_value(attribute_values['flag6'])
|
3102
|
+
end
|
3103
|
+
|
3104
|
+
# Retrieve the Flag7 value
|
3105
|
+
#
|
3106
|
+
# @return Flag7 value
|
3107
|
+
def flag7
|
3108
|
+
get_boolean_value(attribute_values['flag7'])
|
3109
|
+
end
|
3110
|
+
|
3111
|
+
# Retrieve the Flag8 value
|
3112
|
+
#
|
3113
|
+
# @return Flag8 value
|
3114
|
+
def flag8
|
3115
|
+
get_boolean_value(attribute_values['flag8'])
|
3116
|
+
end
|
3117
|
+
|
3118
|
+
# Retrieve the Flag9 value
|
3119
|
+
#
|
3120
|
+
# @return Flag9 value
|
3121
|
+
def flag9
|
3122
|
+
get_boolean_value(attribute_values['flag9'])
|
3123
|
+
end
|
3124
|
+
|
3125
|
+
# Retrieve the Generic value
|
3126
|
+
#
|
3127
|
+
# @return Generic value
|
3128
|
+
def generic
|
3129
|
+
get_boolean_value(attribute_values['generic'])
|
3130
|
+
end
|
3131
|
+
|
3132
|
+
# Retrieve the Group value
|
3133
|
+
#
|
3134
|
+
# @return Group value
|
3135
|
+
def group
|
3136
|
+
attribute_values['group']
|
3137
|
+
end
|
3138
|
+
|
3139
|
+
# Retrieve the Group By Summary value
|
3140
|
+
#
|
3141
|
+
# @return Group By Summary value
|
3142
|
+
def group_by_summary
|
3143
|
+
attribute_values['group_by_summary']
|
3144
|
+
end
|
3145
|
+
|
3146
|
+
# Retrieve the GUID value
|
3147
|
+
#
|
3148
|
+
# @return GUID value
|
3149
|
+
def guid
|
3150
|
+
attribute_values['guid']
|
3151
|
+
end
|
3152
|
+
|
3153
|
+
# Retrieve the Hyperlink value
|
3154
|
+
#
|
3155
|
+
# @return Hyperlink value
|
3156
|
+
def hyperlink
|
3157
|
+
attribute_values['hyperlink']
|
3158
|
+
end
|
3159
|
+
|
3160
|
+
# Retrieve the Hyperlink Address value
|
3161
|
+
#
|
3162
|
+
# @return Hyperlink Address value
|
3163
|
+
def hyperlink_address
|
3164
|
+
attribute_values['hyperlink_address']
|
3165
|
+
end
|
3166
|
+
|
3167
|
+
# Retrieve the Hyperlink Data value
|
3168
|
+
#
|
3169
|
+
# @return Hyperlink Data value
|
3170
|
+
def hyperlink_data
|
3171
|
+
attribute_values['hyperlink_data']
|
3172
|
+
end
|
3173
|
+
|
3174
|
+
# Retrieve the Hyperlink Href value
|
3175
|
+
#
|
3176
|
+
# @return Hyperlink Href value
|
3177
|
+
def hyperlink_href
|
3178
|
+
attribute_values['hyperlink_href']
|
3179
|
+
end
|
3180
|
+
|
3181
|
+
# Retrieve the Hyperlink Screen Tip value
|
3182
|
+
#
|
3183
|
+
# @return Hyperlink Screen Tip value
|
3184
|
+
def hyperlink_screen_tip
|
3185
|
+
attribute_values['hyperlink_screen_tip']
|
3186
|
+
end
|
3187
|
+
|
3188
|
+
# Retrieve the Hyperlink SubAddress value
|
3189
|
+
#
|
3190
|
+
# @return Hyperlink SubAddress value
|
3191
|
+
def hyperlink_subaddress
|
3192
|
+
attribute_values['hyperlink_subaddress']
|
3193
|
+
end
|
3194
|
+
|
3195
|
+
# Retrieve the ID value
|
3196
|
+
#
|
3197
|
+
# @return ID value
|
3198
|
+
def id
|
3199
|
+
get_integer_value(attribute_values['id'])
|
3200
|
+
end
|
3201
|
+
|
3202
|
+
# Retrieve the Import value
|
3203
|
+
#
|
3204
|
+
# @return Import value
|
3205
|
+
def import
|
3206
|
+
get_boolean_value(attribute_values['import'])
|
3207
|
+
end
|
3208
|
+
|
3209
|
+
# Retrieve the Inactive value
|
3210
|
+
#
|
3211
|
+
# @return Inactive value
|
3212
|
+
def inactive
|
3213
|
+
get_boolean_value(attribute_values['inactive'])
|
3214
|
+
end
|
3215
|
+
|
3216
|
+
# Retrieve the Index value
|
3217
|
+
#
|
3218
|
+
# @return Index value
|
3219
|
+
def index
|
3220
|
+
get_integer_value(attribute_values['index'])
|
3221
|
+
end
|
3222
|
+
|
3223
|
+
# Retrieve the Indicators value
|
3224
|
+
#
|
3225
|
+
# @return Indicators value
|
3226
|
+
def indicators
|
3227
|
+
attribute_values['indicators']
|
3228
|
+
end
|
3229
|
+
|
3230
|
+
# Retrieve the Initials value
|
3231
|
+
#
|
3232
|
+
# @return Initials value
|
3233
|
+
def initials
|
3234
|
+
attribute_values['initials']
|
3235
|
+
end
|
3236
|
+
|
3237
|
+
# Retrieve the Leveling Delay value
|
3238
|
+
#
|
3239
|
+
# @return Leveling Delay value
|
3240
|
+
def leveling_delay
|
3241
|
+
attribute_values['leveling_delay']
|
3242
|
+
end
|
3243
|
+
|
3244
|
+
# Retrieve the Linked Fields value
|
3245
|
+
#
|
3246
|
+
# @return Linked Fields value
|
3247
|
+
def linked_fields
|
3248
|
+
get_boolean_value(attribute_values['linked_fields'])
|
3249
|
+
end
|
3250
|
+
|
3251
|
+
# Retrieve the Material Label value
|
3252
|
+
#
|
3253
|
+
# @return Material Label value
|
3254
|
+
def material_label
|
3255
|
+
attribute_values['material_label']
|
3256
|
+
end
|
3257
|
+
|
3258
|
+
# Retrieve the Max Units value
|
3259
|
+
#
|
3260
|
+
# @return Max Units value
|
3261
|
+
def max_units
|
3262
|
+
get_float_value(attribute_values['max_units'])
|
3263
|
+
end
|
3264
|
+
|
3265
|
+
# Retrieve the Modify On Integrate value
|
3266
|
+
#
|
3267
|
+
# @return Modify On Integrate value
|
3268
|
+
def modify_on_integrate
|
3269
|
+
get_boolean_value(attribute_values['modify_on_integrate'])
|
3270
|
+
end
|
3271
|
+
|
3272
|
+
# Retrieve the Name value
|
3273
|
+
#
|
3274
|
+
# @return Name value
|
3275
|
+
def name
|
3276
|
+
attribute_values['name']
|
3277
|
+
end
|
3278
|
+
|
3279
|
+
# Retrieve the Notes value
|
3280
|
+
#
|
3281
|
+
# @return Notes value
|
3282
|
+
def notes
|
3283
|
+
attribute_values['notes']
|
3284
|
+
end
|
3285
|
+
|
3286
|
+
# Retrieve the Number1 value
|
3287
|
+
#
|
3288
|
+
# @return Number1 value
|
3289
|
+
def number1
|
3290
|
+
get_float_value(attribute_values['number1'])
|
3291
|
+
end
|
3292
|
+
|
3293
|
+
# Retrieve the Number10 value
|
3294
|
+
#
|
3295
|
+
# @return Number10 value
|
3296
|
+
def number10
|
3297
|
+
get_float_value(attribute_values['number10'])
|
3298
|
+
end
|
3299
|
+
|
3300
|
+
# Retrieve the Number11 value
|
3301
|
+
#
|
3302
|
+
# @return Number11 value
|
3303
|
+
def number11
|
3304
|
+
get_float_value(attribute_values['number11'])
|
3305
|
+
end
|
3306
|
+
|
3307
|
+
# Retrieve the Number12 value
|
3308
|
+
#
|
3309
|
+
# @return Number12 value
|
3310
|
+
def number12
|
3311
|
+
get_float_value(attribute_values['number12'])
|
3312
|
+
end
|
3313
|
+
|
3314
|
+
# Retrieve the Number13 value
|
3315
|
+
#
|
3316
|
+
# @return Number13 value
|
3317
|
+
def number13
|
3318
|
+
get_float_value(attribute_values['number13'])
|
3319
|
+
end
|
3320
|
+
|
3321
|
+
# Retrieve the Number14 value
|
3322
|
+
#
|
3323
|
+
# @return Number14 value
|
3324
|
+
def number14
|
3325
|
+
get_float_value(attribute_values['number14'])
|
3326
|
+
end
|
3327
|
+
|
3328
|
+
# Retrieve the Number15 value
|
3329
|
+
#
|
3330
|
+
# @return Number15 value
|
3331
|
+
def number15
|
3332
|
+
get_float_value(attribute_values['number15'])
|
3333
|
+
end
|
3334
|
+
|
3335
|
+
# Retrieve the Number16 value
|
3336
|
+
#
|
3337
|
+
# @return Number16 value
|
3338
|
+
def number16
|
3339
|
+
get_float_value(attribute_values['number16'])
|
3340
|
+
end
|
3341
|
+
|
3342
|
+
# Retrieve the Number17 value
|
3343
|
+
#
|
3344
|
+
# @return Number17 value
|
3345
|
+
def number17
|
3346
|
+
get_float_value(attribute_values['number17'])
|
3347
|
+
end
|
3348
|
+
|
3349
|
+
# Retrieve the Number18 value
|
3350
|
+
#
|
3351
|
+
# @return Number18 value
|
3352
|
+
def number18
|
3353
|
+
get_float_value(attribute_values['number18'])
|
3354
|
+
end
|
3355
|
+
|
3356
|
+
# Retrieve the Number19 value
|
3357
|
+
#
|
3358
|
+
# @return Number19 value
|
3359
|
+
def number19
|
3360
|
+
get_float_value(attribute_values['number19'])
|
3361
|
+
end
|
3362
|
+
|
3363
|
+
# Retrieve the Number2 value
|
3364
|
+
#
|
3365
|
+
# @return Number2 value
|
3366
|
+
def number2
|
3367
|
+
get_float_value(attribute_values['number2'])
|
3368
|
+
end
|
3369
|
+
|
3370
|
+
# Retrieve the Number20 value
|
3371
|
+
#
|
3372
|
+
# @return Number20 value
|
3373
|
+
def number20
|
3374
|
+
get_float_value(attribute_values['number20'])
|
3375
|
+
end
|
3376
|
+
|
3377
|
+
# Retrieve the Number3 value
|
3378
|
+
#
|
3379
|
+
# @return Number3 value
|
3380
|
+
def number3
|
3381
|
+
get_float_value(attribute_values['number3'])
|
3382
|
+
end
|
3383
|
+
|
3384
|
+
# Retrieve the Number4 value
|
3385
|
+
#
|
3386
|
+
# @return Number4 value
|
3387
|
+
def number4
|
3388
|
+
get_float_value(attribute_values['number4'])
|
3389
|
+
end
|
3390
|
+
|
3391
|
+
# Retrieve the Number5 value
|
3392
|
+
#
|
3393
|
+
# @return Number5 value
|
3394
|
+
def number5
|
3395
|
+
get_float_value(attribute_values['number5'])
|
3396
|
+
end
|
3397
|
+
|
3398
|
+
# Retrieve the Number6 value
|
3399
|
+
#
|
3400
|
+
# @return Number6 value
|
3401
|
+
def number6
|
3402
|
+
get_float_value(attribute_values['number6'])
|
3403
|
+
end
|
3404
|
+
|
3405
|
+
# Retrieve the Number7 value
|
3406
|
+
#
|
3407
|
+
# @return Number7 value
|
3408
|
+
def number7
|
3409
|
+
get_float_value(attribute_values['number7'])
|
3410
|
+
end
|
3411
|
+
|
3412
|
+
# Retrieve the Number8 value
|
3413
|
+
#
|
3414
|
+
# @return Number8 value
|
3415
|
+
def number8
|
3416
|
+
get_float_value(attribute_values['number8'])
|
3417
|
+
end
|
3418
|
+
|
3419
|
+
# Retrieve the Number9 value
|
3420
|
+
#
|
3421
|
+
# @return Number9 value
|
3422
|
+
def number9
|
3423
|
+
get_float_value(attribute_values['number9'])
|
3424
|
+
end
|
3425
|
+
|
3426
|
+
# Retrieve the Objects value
|
3427
|
+
#
|
3428
|
+
# @return Objects value
|
3429
|
+
def objects
|
3430
|
+
get_float_value(attribute_values['objects'])
|
3431
|
+
end
|
3432
|
+
|
3433
|
+
# Retrieve the Outline Code1 value
|
3434
|
+
#
|
3435
|
+
# @return Outline Code1 value
|
3436
|
+
def outline_code1
|
3437
|
+
attribute_values['outline_code1']
|
3438
|
+
end
|
3439
|
+
|
3440
|
+
# Retrieve the Outline Code10 value
|
3441
|
+
#
|
3442
|
+
# @return Outline Code10 value
|
3443
|
+
def outline_code10
|
3444
|
+
attribute_values['outline_code10']
|
3445
|
+
end
|
3446
|
+
|
3447
|
+
# Retrieve the Outline Code10 Index value
|
3448
|
+
#
|
3449
|
+
# @return Outline Code10 Index value
|
3450
|
+
def outline_code10_index
|
3451
|
+
get_integer_value(attribute_values['outline_code10_index'])
|
3452
|
+
end
|
3453
|
+
|
3454
|
+
# Retrieve the Outline Code1 Index value
|
3455
|
+
#
|
3456
|
+
# @return Outline Code1 Index value
|
3457
|
+
def outline_code1_index
|
3458
|
+
get_integer_value(attribute_values['outline_code1_index'])
|
3459
|
+
end
|
3460
|
+
|
3461
|
+
# Retrieve the Outline Code2 value
|
3462
|
+
#
|
3463
|
+
# @return Outline Code2 value
|
3464
|
+
def outline_code2
|
3465
|
+
attribute_values['outline_code2']
|
3466
|
+
end
|
3467
|
+
|
3468
|
+
# Retrieve the Outline Code2 Index value
|
3469
|
+
#
|
3470
|
+
# @return Outline Code2 Index value
|
3471
|
+
def outline_code2_index
|
3472
|
+
get_integer_value(attribute_values['outline_code2_index'])
|
3473
|
+
end
|
3474
|
+
|
3475
|
+
# Retrieve the Outline Code3 value
|
3476
|
+
#
|
3477
|
+
# @return Outline Code3 value
|
3478
|
+
def outline_code3
|
3479
|
+
attribute_values['outline_code3']
|
3480
|
+
end
|
3481
|
+
|
3482
|
+
# Retrieve the Outline Code3 Index value
|
3483
|
+
#
|
3484
|
+
# @return Outline Code3 Index value
|
3485
|
+
def outline_code3_index
|
3486
|
+
get_integer_value(attribute_values['outline_code3_index'])
|
3487
|
+
end
|
3488
|
+
|
3489
|
+
# Retrieve the Outline Code4 value
|
3490
|
+
#
|
3491
|
+
# @return Outline Code4 value
|
3492
|
+
def outline_code4
|
3493
|
+
attribute_values['outline_code4']
|
3494
|
+
end
|
3495
|
+
|
3496
|
+
# Retrieve the Outline Code4 Index value
|
3497
|
+
#
|
3498
|
+
# @return Outline Code4 Index value
|
3499
|
+
def outline_code4_index
|
3500
|
+
get_integer_value(attribute_values['outline_code4_index'])
|
3501
|
+
end
|
3502
|
+
|
3503
|
+
# Retrieve the Outline Code5 value
|
3504
|
+
#
|
3505
|
+
# @return Outline Code5 value
|
3506
|
+
def outline_code5
|
3507
|
+
attribute_values['outline_code5']
|
3508
|
+
end
|
3509
|
+
|
3510
|
+
# Retrieve the Outline Code5 Index value
|
3511
|
+
#
|
3512
|
+
# @return Outline Code5 Index value
|
3513
|
+
def outline_code5_index
|
3514
|
+
get_integer_value(attribute_values['outline_code5_index'])
|
3515
|
+
end
|
3516
|
+
|
3517
|
+
# Retrieve the Outline Code6 value
|
3518
|
+
#
|
3519
|
+
# @return Outline Code6 value
|
3520
|
+
def outline_code6
|
3521
|
+
attribute_values['outline_code6']
|
3522
|
+
end
|
3523
|
+
|
3524
|
+
# Retrieve the Outline Code6 Index value
|
3525
|
+
#
|
3526
|
+
# @return Outline Code6 Index value
|
3527
|
+
def outline_code6_index
|
3528
|
+
get_integer_value(attribute_values['outline_code6_index'])
|
3529
|
+
end
|
3530
|
+
|
3531
|
+
# Retrieve the Outline Code7 value
|
3532
|
+
#
|
3533
|
+
# @return Outline Code7 value
|
3534
|
+
def outline_code7
|
3535
|
+
attribute_values['outline_code7']
|
3536
|
+
end
|
3537
|
+
|
3538
|
+
# Retrieve the Outline Code7 Index value
|
3539
|
+
#
|
3540
|
+
# @return Outline Code7 Index value
|
3541
|
+
def outline_code7_index
|
3542
|
+
get_integer_value(attribute_values['outline_code7_index'])
|
3543
|
+
end
|
3544
|
+
|
3545
|
+
# Retrieve the Outline Code8 value
|
3546
|
+
#
|
3547
|
+
# @return Outline Code8 value
|
3548
|
+
def outline_code8
|
3549
|
+
attribute_values['outline_code8']
|
3550
|
+
end
|
3551
|
+
|
3552
|
+
# Retrieve the Outline Code8 Index value
|
3553
|
+
#
|
3554
|
+
# @return Outline Code8 Index value
|
3555
|
+
def outline_code8_index
|
3556
|
+
get_integer_value(attribute_values['outline_code8_index'])
|
3557
|
+
end
|
3558
|
+
|
3559
|
+
# Retrieve the Outline Code9 value
|
3560
|
+
#
|
3561
|
+
# @return Outline Code9 value
|
3562
|
+
def outline_code9
|
3563
|
+
attribute_values['outline_code9']
|
3564
|
+
end
|
3565
|
+
|
3566
|
+
# Retrieve the Outline Code9 Index value
|
3567
|
+
#
|
3568
|
+
# @return Outline Code9 Index value
|
3569
|
+
def outline_code9_index
|
3570
|
+
get_integer_value(attribute_values['outline_code9_index'])
|
3571
|
+
end
|
3572
|
+
|
3573
|
+
# Retrieve the Overallocated value
|
3574
|
+
#
|
3575
|
+
# @return Overallocated value
|
3576
|
+
def overallocated
|
3577
|
+
get_boolean_value(attribute_values['overallocated'])
|
3578
|
+
end
|
3579
|
+
|
3580
|
+
# Retrieve the Overtime Cost value
|
3581
|
+
#
|
3582
|
+
# @return Overtime Cost value
|
3583
|
+
def overtime_cost
|
3584
|
+
get_float_value(attribute_values['overtime_cost'])
|
3585
|
+
end
|
3586
|
+
|
3587
|
+
# Retrieve the Overtime Rate value
|
3588
|
+
#
|
3589
|
+
# @return Overtime Rate value
|
3590
|
+
def overtime_rate
|
3591
|
+
attribute_values['overtime_rate']
|
3592
|
+
end
|
3593
|
+
|
3594
|
+
# Retrieve the Overtime Rate Units value
|
3595
|
+
#
|
3596
|
+
# @return Overtime Rate Units value
|
3597
|
+
def overtime_rate_units
|
3598
|
+
attribute_values['overtime_rate_units']
|
3599
|
+
end
|
3600
|
+
|
3601
|
+
# Retrieve the Overtime Work value
|
3602
|
+
#
|
3603
|
+
# @return Overtime Work value
|
3604
|
+
def overtime_work
|
3605
|
+
get_duration_value(attribute_values['overtime_work'])
|
3606
|
+
end
|
3607
|
+
|
3608
|
+
# Retrieve the Parent ID value
|
3609
|
+
#
|
3610
|
+
# @return Parent ID value
|
3611
|
+
def parent_id
|
3612
|
+
get_integer_value(attribute_values['parent_id'])
|
3613
|
+
end
|
3614
|
+
|
3615
|
+
# Retrieve the Peak value
|
3616
|
+
#
|
3617
|
+
# @return Peak value
|
3618
|
+
def peak
|
3619
|
+
get_float_value(attribute_values['peak'])
|
3620
|
+
end
|
3621
|
+
|
3622
|
+
# Retrieve the % Work Complete value
|
3623
|
+
#
|
3624
|
+
# @return % Work Complete value
|
3625
|
+
def percent_work_complete
|
3626
|
+
get_float_value(attribute_values['percent_work_complete'])
|
3627
|
+
end
|
3628
|
+
|
3629
|
+
# Retrieve the Period Dur value
|
3630
|
+
#
|
3631
|
+
# @return Period Dur value
|
3632
|
+
def period_dur
|
3633
|
+
get_float_value(attribute_values['period_dur'])
|
3634
|
+
end
|
3635
|
+
|
3636
|
+
# Retrieve the Per Day value
|
3637
|
+
#
|
3638
|
+
# @return Per Day value
|
3639
|
+
def per_day
|
3640
|
+
get_float_value(attribute_values['per_day'])
|
3641
|
+
end
|
3642
|
+
|
3643
|
+
# Retrieve the Phone value
|
3644
|
+
#
|
3645
|
+
# @return Phone value
|
3646
|
+
def phone
|
3647
|
+
attribute_values['phone']
|
3648
|
+
end
|
3649
|
+
|
3650
|
+
# Retrieve the Phonetics value
|
3651
|
+
#
|
3652
|
+
# @return Phonetics value
|
3653
|
+
def phonetics
|
3654
|
+
attribute_values['phonetics']
|
3655
|
+
end
|
3656
|
+
|
3657
|
+
# Retrieve the Pool value
|
3658
|
+
#
|
3659
|
+
# @return Pool value
|
3660
|
+
def pool
|
3661
|
+
get_float_value(attribute_values['pool'])
|
3662
|
+
end
|
3663
|
+
|
3664
|
+
# Retrieve the Priority value
|
3665
|
+
#
|
3666
|
+
# @return Priority value
|
3667
|
+
def priority
|
3668
|
+
get_float_value(attribute_values['priority'])
|
3669
|
+
end
|
3670
|
+
|
3671
|
+
# Retrieve the Project value
|
3672
|
+
#
|
3673
|
+
# @return Project value
|
3674
|
+
def project
|
3675
|
+
attribute_values['project']
|
3676
|
+
end
|
3677
|
+
|
3678
|
+
# Retrieve the Proposed Finish value
|
3679
|
+
#
|
3680
|
+
# @return Proposed Finish value
|
3681
|
+
def proposed_finish
|
3682
|
+
get_date_value(attribute_values['proposed_finish'])
|
3683
|
+
end
|
3684
|
+
|
3685
|
+
# Retrieve the Proposed Max Units value
|
3686
|
+
#
|
3687
|
+
# @return Proposed Max Units value
|
3688
|
+
def proposed_max_units
|
3689
|
+
get_float_value(attribute_values['proposed_max_units'])
|
3690
|
+
end
|
3691
|
+
|
3692
|
+
# Retrieve the Proposed Start value
|
3693
|
+
#
|
3694
|
+
# @return Proposed Start value
|
3695
|
+
def proposed_start
|
3696
|
+
get_date_value(attribute_values['proposed_start'])
|
3697
|
+
end
|
3698
|
+
|
3699
|
+
# Retrieve the Rate value
|
3700
|
+
#
|
3701
|
+
# @return Rate value
|
3702
|
+
def rate
|
3703
|
+
get_float_value(attribute_values['rate'])
|
3704
|
+
end
|
3705
|
+
|
3706
|
+
# Retrieve the Regular Work value
|
3707
|
+
#
|
3708
|
+
# @return Regular Work value
|
3709
|
+
def regular_work
|
3710
|
+
get_duration_value(attribute_values['regular_work'])
|
3711
|
+
end
|
3712
|
+
|
3713
|
+
# Retrieve the Remaining Cost value
|
3714
|
+
#
|
3715
|
+
# @return Remaining Cost value
|
3716
|
+
def remaining_cost
|
3717
|
+
get_float_value(attribute_values['remaining_cost'])
|
3718
|
+
end
|
3719
|
+
|
3720
|
+
# Retrieve the Remaining Overtime Cost value
|
3721
|
+
#
|
3722
|
+
# @return Remaining Overtime Cost value
|
3723
|
+
def remaining_overtime_cost
|
3724
|
+
get_float_value(attribute_values['remaining_overtime_cost'])
|
3725
|
+
end
|
3726
|
+
|
3727
|
+
# Retrieve the Remaining Overtime Work value
|
3728
|
+
#
|
3729
|
+
# @return Remaining Overtime Work value
|
3730
|
+
def remaining_overtime_work
|
3731
|
+
get_duration_value(attribute_values['remaining_overtime_work'])
|
3732
|
+
end
|
3733
|
+
|
3734
|
+
# Retrieve the Remaining Work value
|
3735
|
+
#
|
3736
|
+
# @return Remaining Work value
|
3737
|
+
def remaining_work
|
3738
|
+
get_duration_value(attribute_values['remaining_work'])
|
3739
|
+
end
|
3740
|
+
|
3741
|
+
# Retrieve the Request/Demand value
|
3742
|
+
#
|
3743
|
+
# @return Request/Demand value
|
3744
|
+
def request_demand
|
3745
|
+
attribute_values['request_demand']
|
3746
|
+
end
|
3747
|
+
|
3748
|
+
# Retrieve the Resource ID value
|
3749
|
+
#
|
3750
|
+
# @return Resource ID value
|
3751
|
+
def resource_id
|
3752
|
+
attribute_values['resource_id']
|
3753
|
+
end
|
3754
|
+
|
3755
|
+
# Retrieve the Response Pending value
|
3756
|
+
#
|
3757
|
+
# @return Response Pending value
|
3758
|
+
def response_pending
|
3759
|
+
get_boolean_value(attribute_values['response_pending'])
|
3760
|
+
end
|
3761
|
+
|
3762
|
+
# Retrieve the Role value
|
3763
|
+
#
|
3764
|
+
# @return Role value
|
3765
|
+
def role
|
3766
|
+
get_boolean_value(attribute_values['role'])
|
3767
|
+
end
|
3768
|
+
|
3769
|
+
# Retrieve the Standard Rate value
|
3770
|
+
#
|
3771
|
+
# @return Standard Rate value
|
3772
|
+
def standard_rate
|
3773
|
+
attribute_values['standard_rate']
|
3774
|
+
end
|
3775
|
+
|
3776
|
+
# Retrieve the Standard Rate Units value
|
3777
|
+
#
|
3778
|
+
# @return Standard Rate Units value
|
3779
|
+
def standard_rate_units
|
3780
|
+
attribute_values['standard_rate_units']
|
3781
|
+
end
|
3782
|
+
|
3783
|
+
# Retrieve the Start value
|
3784
|
+
#
|
3785
|
+
# @return Start value
|
3786
|
+
def start
|
3787
|
+
get_date_value(attribute_values['start'])
|
3788
|
+
end
|
3789
|
+
|
3790
|
+
# Retrieve the Start1 value
|
3791
|
+
#
|
3792
|
+
# @return Start1 value
|
3793
|
+
def start1
|
3794
|
+
get_date_value(attribute_values['start1'])
|
3795
|
+
end
|
3796
|
+
|
3797
|
+
# Retrieve the Start10 value
|
3798
|
+
#
|
3799
|
+
# @return Start10 value
|
3800
|
+
def start10
|
3801
|
+
get_date_value(attribute_values['start10'])
|
3802
|
+
end
|
3803
|
+
|
3804
|
+
# Retrieve the Start2 value
|
3805
|
+
#
|
3806
|
+
# @return Start2 value
|
3807
|
+
def start2
|
3808
|
+
get_date_value(attribute_values['start2'])
|
3809
|
+
end
|
3810
|
+
|
3811
|
+
# Retrieve the Start3 value
|
3812
|
+
#
|
3813
|
+
# @return Start3 value
|
3814
|
+
def start3
|
3815
|
+
get_date_value(attribute_values['start3'])
|
3816
|
+
end
|
3817
|
+
|
3818
|
+
# Retrieve the Start4 value
|
3819
|
+
#
|
3820
|
+
# @return Start4 value
|
3821
|
+
def start4
|
3822
|
+
get_date_value(attribute_values['start4'])
|
3823
|
+
end
|
3824
|
+
|
3825
|
+
# Retrieve the Start5 value
|
3826
|
+
#
|
3827
|
+
# @return Start5 value
|
3828
|
+
def start5
|
3829
|
+
get_date_value(attribute_values['start5'])
|
3830
|
+
end
|
3831
|
+
|
3832
|
+
# Retrieve the Start6 value
|
3833
|
+
#
|
3834
|
+
# @return Start6 value
|
3835
|
+
def start6
|
3836
|
+
get_date_value(attribute_values['start6'])
|
3837
|
+
end
|
3838
|
+
|
3839
|
+
# Retrieve the Start7 value
|
3840
|
+
#
|
3841
|
+
# @return Start7 value
|
3842
|
+
def start7
|
3843
|
+
get_date_value(attribute_values['start7'])
|
3844
|
+
end
|
3845
|
+
|
3846
|
+
# Retrieve the Start8 value
|
3847
|
+
#
|
3848
|
+
# @return Start8 value
|
3849
|
+
def start8
|
3850
|
+
get_date_value(attribute_values['start8'])
|
3851
|
+
end
|
3852
|
+
|
3853
|
+
# Retrieve the Start9 value
|
3854
|
+
#
|
3855
|
+
# @return Start9 value
|
3856
|
+
def start9
|
3857
|
+
get_date_value(attribute_values['start9'])
|
3858
|
+
end
|
3859
|
+
|
3860
|
+
# Retrieve the Subproject Unique Resource ID value
|
3861
|
+
#
|
3862
|
+
# @return Subproject Unique Resource ID value
|
3863
|
+
def subproject_resource_unique_id
|
3864
|
+
get_integer_value(attribute_values['subproject_resource_unique_id'])
|
3865
|
+
end
|
3866
|
+
|
3867
|
+
# Retrieve the Summary value
|
3868
|
+
#
|
3869
|
+
# @return Summary value
|
3870
|
+
def summary
|
3871
|
+
attribute_values['summary']
|
3872
|
+
end
|
3873
|
+
|
3874
|
+
# Retrieve the Supply Reference value
|
3875
|
+
#
|
3876
|
+
# @return Supply Reference value
|
3877
|
+
def supply_reference
|
3878
|
+
attribute_values['supply_reference']
|
3879
|
+
end
|
3880
|
+
|
3881
|
+
# Retrieve the SV value
|
3882
|
+
#
|
3883
|
+
# @return SV value
|
3884
|
+
def sv
|
3885
|
+
get_float_value(attribute_values['sv'])
|
3886
|
+
end
|
3887
|
+
|
3888
|
+
# Retrieve the Task Outline Number value
|
3889
|
+
#
|
3890
|
+
# @return Task Outline Number value
|
3891
|
+
def task_outline_number
|
3892
|
+
attribute_values['task_outline_number']
|
3893
|
+
end
|
3894
|
+
|
3895
|
+
# Retrieve the Task Summary Name value
|
3896
|
+
#
|
3897
|
+
# @return Task Summary Name value
|
3898
|
+
def task_summary_name
|
3899
|
+
attribute_values['task_summary_name']
|
3900
|
+
end
|
3901
|
+
|
3902
|
+
# Retrieve the TeamStatus Pending value
|
3903
|
+
#
|
3904
|
+
# @return TeamStatus Pending value
|
3905
|
+
def teamstatus_pending
|
3906
|
+
get_boolean_value(attribute_values['teamstatus_pending'])
|
3907
|
+
end
|
3908
|
+
|
3909
|
+
# Retrieve the Team Assignment Pool value
|
3910
|
+
#
|
3911
|
+
# @return Team Assignment Pool value
|
3912
|
+
def team_assignment_pool
|
3913
|
+
get_boolean_value(attribute_values['team_assignment_pool'])
|
3914
|
+
end
|
3915
|
+
|
3916
|
+
# Retrieve the Text1 value
|
3917
|
+
#
|
3918
|
+
# @return Text1 value
|
3919
|
+
def text1
|
3920
|
+
attribute_values['text1']
|
3921
|
+
end
|
3922
|
+
|
3923
|
+
# Retrieve the Text10 value
|
3924
|
+
#
|
3925
|
+
# @return Text10 value
|
3926
|
+
def text10
|
3927
|
+
attribute_values['text10']
|
3928
|
+
end
|
3929
|
+
|
3930
|
+
# Retrieve the Text11 value
|
3931
|
+
#
|
3932
|
+
# @return Text11 value
|
3933
|
+
def text11
|
3934
|
+
attribute_values['text11']
|
3935
|
+
end
|
3936
|
+
|
3937
|
+
# Retrieve the Text12 value
|
3938
|
+
#
|
3939
|
+
# @return Text12 value
|
3940
|
+
def text12
|
3941
|
+
attribute_values['text12']
|
3942
|
+
end
|
3943
|
+
|
3944
|
+
# Retrieve the Text13 value
|
3945
|
+
#
|
3946
|
+
# @return Text13 value
|
3947
|
+
def text13
|
3948
|
+
attribute_values['text13']
|
3949
|
+
end
|
3950
|
+
|
3951
|
+
# Retrieve the Text14 value
|
3952
|
+
#
|
3953
|
+
# @return Text14 value
|
3954
|
+
def text14
|
3955
|
+
attribute_values['text14']
|
3956
|
+
end
|
3957
|
+
|
3958
|
+
# Retrieve the Text15 value
|
3959
|
+
#
|
3960
|
+
# @return Text15 value
|
3961
|
+
def text15
|
3962
|
+
attribute_values['text15']
|
3963
|
+
end
|
3964
|
+
|
3965
|
+
# Retrieve the Text16 value
|
3966
|
+
#
|
3967
|
+
# @return Text16 value
|
3968
|
+
def text16
|
3969
|
+
attribute_values['text16']
|
3970
|
+
end
|
3971
|
+
|
3972
|
+
# Retrieve the Text17 value
|
3973
|
+
#
|
3974
|
+
# @return Text17 value
|
3975
|
+
def text17
|
3976
|
+
attribute_values['text17']
|
3977
|
+
end
|
3978
|
+
|
3979
|
+
# Retrieve the Text18 value
|
3980
|
+
#
|
3981
|
+
# @return Text18 value
|
3982
|
+
def text18
|
3983
|
+
attribute_values['text18']
|
3984
|
+
end
|
3985
|
+
|
3986
|
+
# Retrieve the Text19 value
|
3987
|
+
#
|
3988
|
+
# @return Text19 value
|
3989
|
+
def text19
|
3990
|
+
attribute_values['text19']
|
3991
|
+
end
|
3992
|
+
|
3993
|
+
# Retrieve the Text2 value
|
3994
|
+
#
|
3995
|
+
# @return Text2 value
|
3996
|
+
def text2
|
3997
|
+
attribute_values['text2']
|
3998
|
+
end
|
3999
|
+
|
4000
|
+
# Retrieve the Text20 value
|
4001
|
+
#
|
4002
|
+
# @return Text20 value
|
4003
|
+
def text20
|
4004
|
+
attribute_values['text20']
|
4005
|
+
end
|
4006
|
+
|
4007
|
+
# Retrieve the Text21 value
|
4008
|
+
#
|
4009
|
+
# @return Text21 value
|
4010
|
+
def text21
|
4011
|
+
attribute_values['text21']
|
4012
|
+
end
|
4013
|
+
|
4014
|
+
# Retrieve the Text22 value
|
4015
|
+
#
|
4016
|
+
# @return Text22 value
|
4017
|
+
def text22
|
4018
|
+
attribute_values['text22']
|
4019
|
+
end
|
4020
|
+
|
4021
|
+
# Retrieve the Text23 value
|
4022
|
+
#
|
4023
|
+
# @return Text23 value
|
4024
|
+
def text23
|
4025
|
+
attribute_values['text23']
|
4026
|
+
end
|
4027
|
+
|
4028
|
+
# Retrieve the Text24 value
|
4029
|
+
#
|
4030
|
+
# @return Text24 value
|
4031
|
+
def text24
|
4032
|
+
attribute_values['text24']
|
4033
|
+
end
|
4034
|
+
|
4035
|
+
# Retrieve the Text25 value
|
4036
|
+
#
|
4037
|
+
# @return Text25 value
|
4038
|
+
def text25
|
4039
|
+
attribute_values['text25']
|
4040
|
+
end
|
4041
|
+
|
4042
|
+
# Retrieve the Text26 value
|
4043
|
+
#
|
4044
|
+
# @return Text26 value
|
4045
|
+
def text26
|
4046
|
+
attribute_values['text26']
|
4047
|
+
end
|
4048
|
+
|
4049
|
+
# Retrieve the Text27 value
|
4050
|
+
#
|
4051
|
+
# @return Text27 value
|
4052
|
+
def text27
|
4053
|
+
attribute_values['text27']
|
4054
|
+
end
|
4055
|
+
|
4056
|
+
# Retrieve the Text28 value
|
4057
|
+
#
|
4058
|
+
# @return Text28 value
|
4059
|
+
def text28
|
4060
|
+
attribute_values['text28']
|
4061
|
+
end
|
4062
|
+
|
4063
|
+
# Retrieve the Text29 value
|
4064
|
+
#
|
4065
|
+
# @return Text29 value
|
4066
|
+
def text29
|
4067
|
+
attribute_values['text29']
|
4068
|
+
end
|
4069
|
+
|
4070
|
+
# Retrieve the Text3 value
|
4071
|
+
#
|
4072
|
+
# @return Text3 value
|
4073
|
+
def text3
|
4074
|
+
attribute_values['text3']
|
4075
|
+
end
|
4076
|
+
|
4077
|
+
# Retrieve the Text30 value
|
4078
|
+
#
|
4079
|
+
# @return Text30 value
|
4080
|
+
def text30
|
4081
|
+
attribute_values['text30']
|
4082
|
+
end
|
4083
|
+
|
4084
|
+
# Retrieve the Text4 value
|
4085
|
+
#
|
4086
|
+
# @return Text4 value
|
4087
|
+
def text4
|
4088
|
+
attribute_values['text4']
|
4089
|
+
end
|
4090
|
+
|
4091
|
+
# Retrieve the Text5 value
|
4092
|
+
#
|
4093
|
+
# @return Text5 value
|
4094
|
+
def text5
|
4095
|
+
attribute_values['text5']
|
4096
|
+
end
|
4097
|
+
|
4098
|
+
# Retrieve the Text6 value
|
4099
|
+
#
|
4100
|
+
# @return Text6 value
|
4101
|
+
def text6
|
4102
|
+
attribute_values['text6']
|
4103
|
+
end
|
4104
|
+
|
4105
|
+
# Retrieve the Text7 value
|
4106
|
+
#
|
4107
|
+
# @return Text7 value
|
4108
|
+
def text7
|
4109
|
+
attribute_values['text7']
|
4110
|
+
end
|
4111
|
+
|
4112
|
+
# Retrieve the Text8 value
|
4113
|
+
#
|
4114
|
+
# @return Text8 value
|
4115
|
+
def text8
|
4116
|
+
attribute_values['text8']
|
4117
|
+
end
|
4118
|
+
|
4119
|
+
# Retrieve the Text9 value
|
4120
|
+
#
|
4121
|
+
# @return Text9 value
|
4122
|
+
def text9
|
4123
|
+
attribute_values['text9']
|
4124
|
+
end
|
4125
|
+
|
4126
|
+
# Retrieve the Type value
|
4127
|
+
#
|
4128
|
+
# @return Type value
|
4129
|
+
def type
|
4130
|
+
attribute_values['type']
|
4131
|
+
end
|
4132
|
+
|
4133
|
+
# Retrieve the <Unavailable> value
|
4134
|
+
#
|
4135
|
+
# @return <Unavailable> value
|
4136
|
+
def unavailable
|
4137
|
+
attribute_values['unavailable']
|
4138
|
+
end
|
4139
|
+
|
4140
|
+
# Retrieve the Unique ID value
|
4141
|
+
#
|
4142
|
+
# @return Unique ID value
|
4143
|
+
def unique_id
|
4144
|
+
get_integer_value(attribute_values['unique_id'])
|
4145
|
+
end
|
4146
|
+
|
4147
|
+
# Retrieve the Unit value
|
4148
|
+
#
|
4149
|
+
# @return Unit value
|
4150
|
+
def unit
|
4151
|
+
attribute_values['unit']
|
4152
|
+
end
|
4153
|
+
|
4154
|
+
# Retrieve the Update Needed value
|
4155
|
+
#
|
4156
|
+
# @return Update Needed value
|
4157
|
+
def update_needed
|
4158
|
+
get_boolean_value(attribute_values['update_needed'])
|
4159
|
+
end
|
4160
|
+
|
4161
|
+
# Retrieve the VAC value
|
4162
|
+
#
|
4163
|
+
# @return VAC value
|
4164
|
+
def vac
|
4165
|
+
get_float_value(attribute_values['vac'])
|
4166
|
+
end
|
4167
|
+
|
4168
|
+
# Retrieve the WBS value
|
4169
|
+
#
|
4170
|
+
# @return WBS value
|
4171
|
+
def wbs
|
4172
|
+
attribute_values['wbs']
|
4173
|
+
end
|
4174
|
+
|
4175
|
+
# Retrieve the Windows User Account value
|
4176
|
+
#
|
4177
|
+
# @return Windows User Account value
|
4178
|
+
def windows_user_account
|
4179
|
+
attribute_values['windows_user_account']
|
4180
|
+
end
|
4181
|
+
|
4182
|
+
# Retrieve the Work value
|
4183
|
+
#
|
4184
|
+
# @return Work value
|
4185
|
+
def work
|
4186
|
+
get_duration_value(attribute_values['work'])
|
4187
|
+
end
|
4188
|
+
|
4189
|
+
# Retrieve the Workgroup value
|
4190
|
+
#
|
4191
|
+
# @return Workgroup value
|
4192
|
+
def workgroup
|
4193
|
+
attribute_values['workgroup']
|
4194
|
+
end
|
4195
|
+
|
4196
|
+
# Retrieve the Work Contour value
|
4197
|
+
#
|
4198
|
+
# @return Work Contour value
|
4199
|
+
def work_contour
|
4200
|
+
attribute_values['work_contour']
|
4201
|
+
end
|
4202
|
+
|
4203
|
+
# Retrieve the Work Variance value
|
4204
|
+
#
|
4205
|
+
# @return Work Variance value
|
4206
|
+
def work_variance
|
4207
|
+
get_duration_value(attribute_values['work_variance'])
|
4208
|
+
end
|
4209
|
+
end
|
4210
|
+
end
|