module MPXJ::AssignmentMethods

Constants

ATTRIBUTE_TYPES

Public Class Methods

included(base) click to toggle source
# File lib/mpxj/assignment_methods.rb, line 3
def self.included(base)
  base.extend(AssignmentClassMethods)
end

Public Instance Methods

actual_cost() click to toggle source

Retrieve the Actual Cost value

@return Actual Cost value

# File lib/mpxj/assignment_methods.rb, line 10
def actual_cost
  get_float_value(attribute_values['actual_cost'])
end
actual_finish() click to toggle source

Retrieve the Actual Finish value

@return Actual Finish value

# File lib/mpxj/assignment_methods.rb, line 17
def actual_finish
  get_date_value(attribute_values['actual_finish'])
end
actual_overtime_cost() click to toggle source

Retrieve the Actual Overtime Cost value

@return Actual Overtime Cost value

# File lib/mpxj/assignment_methods.rb, line 24
def actual_overtime_cost
  get_float_value(attribute_values['actual_overtime_cost'])
end
actual_overtime_work() click to toggle source

Retrieve the Actual Overtime Work value

@return Actual Overtime Work value

# File lib/mpxj/assignment_methods.rb, line 31
def actual_overtime_work
  get_duration_value(attribute_values['actual_overtime_work'])
end
actual_overtime_work_protected() click to toggle source

Retrieve the Actual Overtime Work Protected value

@return Actual Overtime Work Protected value

# File lib/mpxj/assignment_methods.rb, line 38
def actual_overtime_work_protected
  get_duration_value(attribute_values['actual_overtime_work_protected'])
end
actual_start() click to toggle source

Retrieve the Actual Start value

@return Actual Start value

# File lib/mpxj/assignment_methods.rb, line 45
def actual_start
  get_date_value(attribute_values['actual_start'])
end
actual_work() click to toggle source

Retrieve the Actual Work value

@return Actual Work value

# File lib/mpxj/assignment_methods.rb, line 52
def actual_work
  get_duration_value(attribute_values['actual_work'])
end
actual_work_protected() click to toggle source

Retrieve the Actual Work Protected value

@return Actual Work Protected value

# File lib/mpxj/assignment_methods.rb, line 59
def actual_work_protected
  get_duration_value(attribute_values['actual_work_protected'])
end
acwp() click to toggle source

Retrieve the ACWP value

@return ACWP value

# File lib/mpxj/assignment_methods.rb, line 66
def acwp
  get_float_value(attribute_values['acwp'])
end
assignment_delay() click to toggle source

Retrieve the Assignment Delay value

@return Assignment Delay value

# File lib/mpxj/assignment_methods.rb, line 73
def assignment_delay
  get_duration_value(attribute_values['assignment_delay'])
end
assignment_resource_guid() click to toggle source

Retrieve the Assignment Resource GUID value

@return Assignment Resource GUID value

# File lib/mpxj/assignment_methods.rb, line 80
def assignment_resource_guid
  attribute_values['assignment_resource_guid']
end
assignment_task_guid() click to toggle source

Retrieve the Assignment Task GUID value

@return Assignment Task GUID value

# File lib/mpxj/assignment_methods.rb, line 87
def assignment_task_guid
  attribute_values['assignment_task_guid']
end
assignment_units() click to toggle source

Retrieve the Assignment Units value

@return Assignment Units value

# File lib/mpxj/assignment_methods.rb, line 94
def assignment_units
  get_float_value(attribute_values['assignment_units'])
end
attribute_types() click to toggle source
# File lib/mpxj/assignment_methods.rb, line 4042
def attribute_types
  ATTRIBUTE_TYPES
end
baseline10_budget_cost() click to toggle source

Retrieve the Baseline10 Budget Cost value

@return Baseline10 Budget Cost value

# File lib/mpxj/assignment_methods.rb, line 101
def baseline10_budget_cost
  get_float_value(attribute_values['baseline10_budget_cost'])
end
baseline10_budget_work() click to toggle source

Retrieve the Baseline10 Budget Work value

@return Baseline10 Budget Work value

# File lib/mpxj/assignment_methods.rb, line 108
def baseline10_budget_work
  get_duration_value(attribute_values['baseline10_budget_work'])
end
baseline10_cost() click to toggle source

Retrieve the Baseline10 Cost value

@return Baseline10 Cost value

# File lib/mpxj/assignment_methods.rb, line 115
def baseline10_cost
  get_float_value(attribute_values['baseline10_cost'])
end
baseline10_finish() click to toggle source

Retrieve the Baseline10 Finish value

@return Baseline10 Finish value

# File lib/mpxj/assignment_methods.rb, line 122
def baseline10_finish
  get_date_value(attribute_values['baseline10_finish'])
end
baseline10_start() click to toggle source

Retrieve the Baseline10 Start value

@return Baseline10 Start value

# File lib/mpxj/assignment_methods.rb, line 129
def baseline10_start
  get_date_value(attribute_values['baseline10_start'])
end
baseline10_work() click to toggle source

Retrieve the Baseline10 Work value

@return Baseline10 Work value

# File lib/mpxj/assignment_methods.rb, line 136
def baseline10_work
  get_duration_value(attribute_values['baseline10_work'])
end
baseline1_budget_cost() click to toggle source

Retrieve the Baseline1 Budget Cost value

@return Baseline1 Budget Cost value

# File lib/mpxj/assignment_methods.rb, line 143
def baseline1_budget_cost
  get_float_value(attribute_values['baseline1_budget_cost'])
end
baseline1_budget_work() click to toggle source

Retrieve the Baseline1 Budget Work value

@return Baseline1 Budget Work value

# File lib/mpxj/assignment_methods.rb, line 150
def baseline1_budget_work
  get_duration_value(attribute_values['baseline1_budget_work'])
end
baseline1_cost() click to toggle source

Retrieve the Baseline1 Cost value

@return Baseline1 Cost value

# File lib/mpxj/assignment_methods.rb, line 157
def baseline1_cost
  get_float_value(attribute_values['baseline1_cost'])
end
baseline1_finish() click to toggle source

Retrieve the Baseline1 Finish value

@return Baseline1 Finish value

# File lib/mpxj/assignment_methods.rb, line 164
def baseline1_finish
  get_date_value(attribute_values['baseline1_finish'])
end
baseline1_start() click to toggle source

Retrieve the Baseline1 Start value

@return Baseline1 Start value

# File lib/mpxj/assignment_methods.rb, line 171
def baseline1_start
  get_date_value(attribute_values['baseline1_start'])
end
baseline1_work() click to toggle source

Retrieve the Baseline1 Work value

@return Baseline1 Work value

# File lib/mpxj/assignment_methods.rb, line 178
def baseline1_work
  get_duration_value(attribute_values['baseline1_work'])
end
baseline2_budget_cost() click to toggle source

Retrieve the Baseline2 Budget Cost value

@return Baseline2 Budget Cost value

# File lib/mpxj/assignment_methods.rb, line 185
def baseline2_budget_cost
  get_float_value(attribute_values['baseline2_budget_cost'])
end
baseline2_budget_work() click to toggle source

Retrieve the Baseline2 Budget Work value

@return Baseline2 Budget Work value

# File lib/mpxj/assignment_methods.rb, line 192
def baseline2_budget_work
  get_duration_value(attribute_values['baseline2_budget_work'])
end
baseline2_cost() click to toggle source

Retrieve the Baseline2 Cost value

@return Baseline2 Cost value

# File lib/mpxj/assignment_methods.rb, line 199
def baseline2_cost
  get_float_value(attribute_values['baseline2_cost'])
end
baseline2_finish() click to toggle source

Retrieve the Baseline2 Finish value

@return Baseline2 Finish value

# File lib/mpxj/assignment_methods.rb, line 206
def baseline2_finish
  get_date_value(attribute_values['baseline2_finish'])
end
baseline2_start() click to toggle source

Retrieve the Baseline2 Start value

@return Baseline2 Start value

# File lib/mpxj/assignment_methods.rb, line 213
def baseline2_start
  get_date_value(attribute_values['baseline2_start'])
end
baseline2_work() click to toggle source

Retrieve the Baseline2 Work value

@return Baseline2 Work value

# File lib/mpxj/assignment_methods.rb, line 220
def baseline2_work
  get_duration_value(attribute_values['baseline2_work'])
end
baseline3_budget_cost() click to toggle source

Retrieve the Baseline3 Budget Cost value

@return Baseline3 Budget Cost value

# File lib/mpxj/assignment_methods.rb, line 227
def baseline3_budget_cost
  get_float_value(attribute_values['baseline3_budget_cost'])
end
baseline3_budget_work() click to toggle source

Retrieve the Baseline3 Budget Work value

@return Baseline3 Budget Work value

# File lib/mpxj/assignment_methods.rb, line 234
def baseline3_budget_work
  get_duration_value(attribute_values['baseline3_budget_work'])
end
baseline3_cost() click to toggle source

Retrieve the Baseline3 Cost value

@return Baseline3 Cost value

# File lib/mpxj/assignment_methods.rb, line 241
def baseline3_cost
  get_float_value(attribute_values['baseline3_cost'])
end
baseline3_finish() click to toggle source

Retrieve the Baseline3 Finish value

@return Baseline3 Finish value

# File lib/mpxj/assignment_methods.rb, line 248
def baseline3_finish
  get_date_value(attribute_values['baseline3_finish'])
end
baseline3_start() click to toggle source

Retrieve the Baseline3 Start value

@return Baseline3 Start value

# File lib/mpxj/assignment_methods.rb, line 255
def baseline3_start
  get_date_value(attribute_values['baseline3_start'])
end
baseline3_work() click to toggle source

Retrieve the Baseline3 Work value

@return Baseline3 Work value

# File lib/mpxj/assignment_methods.rb, line 262
def baseline3_work
  get_duration_value(attribute_values['baseline3_work'])
end
baseline4_budget_cost() click to toggle source

Retrieve the Baseline4 Budget Cost value

@return Baseline4 Budget Cost value

# File lib/mpxj/assignment_methods.rb, line 269
def baseline4_budget_cost
  get_float_value(attribute_values['baseline4_budget_cost'])
end
baseline4_budget_work() click to toggle source

Retrieve the Baseline4 Budget Work value

@return Baseline4 Budget Work value

# File lib/mpxj/assignment_methods.rb, line 276
def baseline4_budget_work
  get_duration_value(attribute_values['baseline4_budget_work'])
end
baseline4_cost() click to toggle source

Retrieve the Baseline4 Cost value

@return Baseline4 Cost value

# File lib/mpxj/assignment_methods.rb, line 283
def baseline4_cost
  get_float_value(attribute_values['baseline4_cost'])
end
baseline4_finish() click to toggle source

Retrieve the Baseline4 Finish value

@return Baseline4 Finish value

# File lib/mpxj/assignment_methods.rb, line 290
def baseline4_finish
  get_date_value(attribute_values['baseline4_finish'])
end
baseline4_start() click to toggle source

Retrieve the Baseline4 Start value

@return Baseline4 Start value

# File lib/mpxj/assignment_methods.rb, line 297
def baseline4_start
  get_date_value(attribute_values['baseline4_start'])
end
baseline4_work() click to toggle source

Retrieve the Baseline4 Work value

@return Baseline4 Work value

# File lib/mpxj/assignment_methods.rb, line 304
def baseline4_work
  get_duration_value(attribute_values['baseline4_work'])
end
baseline5_budget_cost() click to toggle source

Retrieve the Baseline5 Budget Cost value

@return Baseline5 Budget Cost value

# File lib/mpxj/assignment_methods.rb, line 311
def baseline5_budget_cost
  get_float_value(attribute_values['baseline5_budget_cost'])
end
baseline5_budget_work() click to toggle source

Retrieve the Baseline5 Budget Work value

@return Baseline5 Budget Work value

# File lib/mpxj/assignment_methods.rb, line 318
def baseline5_budget_work
  get_duration_value(attribute_values['baseline5_budget_work'])
end
baseline5_cost() click to toggle source

Retrieve the Baseline5 Cost value

@return Baseline5 Cost value

# File lib/mpxj/assignment_methods.rb, line 325
def baseline5_cost
  get_float_value(attribute_values['baseline5_cost'])
end
baseline5_finish() click to toggle source

Retrieve the Baseline5 Finish value

@return Baseline5 Finish value

# File lib/mpxj/assignment_methods.rb, line 332
def baseline5_finish
  get_date_value(attribute_values['baseline5_finish'])
end
baseline5_start() click to toggle source

Retrieve the Baseline5 Start value

@return Baseline5 Start value

# File lib/mpxj/assignment_methods.rb, line 339
def baseline5_start
  get_date_value(attribute_values['baseline5_start'])
end
baseline5_work() click to toggle source

Retrieve the Baseline5 Work value

@return Baseline5 Work value

# File lib/mpxj/assignment_methods.rb, line 346
def baseline5_work
  get_duration_value(attribute_values['baseline5_work'])
end
baseline6_budget_cost() click to toggle source

Retrieve the Baseline6 Budget Cost value

@return Baseline6 Budget Cost value

# File lib/mpxj/assignment_methods.rb, line 353
def baseline6_budget_cost
  get_float_value(attribute_values['baseline6_budget_cost'])
end
baseline6_budget_work() click to toggle source

Retrieve the Baseline6 Budget Work value

@return Baseline6 Budget Work value

# File lib/mpxj/assignment_methods.rb, line 360
def baseline6_budget_work
  get_duration_value(attribute_values['baseline6_budget_work'])
end
baseline6_cost() click to toggle source

Retrieve the Baseline6 Cost value

@return Baseline6 Cost value

# File lib/mpxj/assignment_methods.rb, line 367
def baseline6_cost
  get_float_value(attribute_values['baseline6_cost'])
end
baseline6_finish() click to toggle source

Retrieve the Baseline6 Finish value

@return Baseline6 Finish value

# File lib/mpxj/assignment_methods.rb, line 374
def baseline6_finish
  get_date_value(attribute_values['baseline6_finish'])
end
baseline6_start() click to toggle source

Retrieve the Baseline6 Start value

@return Baseline6 Start value

# File lib/mpxj/assignment_methods.rb, line 381
def baseline6_start
  get_date_value(attribute_values['baseline6_start'])
end
baseline6_work() click to toggle source

Retrieve the Baseline6 Work value

@return Baseline6 Work value

# File lib/mpxj/assignment_methods.rb, line 388
def baseline6_work
  get_duration_value(attribute_values['baseline6_work'])
end
baseline7_budget_cost() click to toggle source

Retrieve the Baseline7 Budget Cost value

@return Baseline7 Budget Cost value

# File lib/mpxj/assignment_methods.rb, line 395
def baseline7_budget_cost
  get_float_value(attribute_values['baseline7_budget_cost'])
end
baseline7_budget_work() click to toggle source

Retrieve the Baseline7 Budget Work value

@return Baseline7 Budget Work value

# File lib/mpxj/assignment_methods.rb, line 402
def baseline7_budget_work
  get_duration_value(attribute_values['baseline7_budget_work'])
end
baseline7_cost() click to toggle source

Retrieve the Baseline7 Cost value

@return Baseline7 Cost value

# File lib/mpxj/assignment_methods.rb, line 409
def baseline7_cost
  get_float_value(attribute_values['baseline7_cost'])
end
baseline7_finish() click to toggle source

Retrieve the Baseline7 Finish value

@return Baseline7 Finish value

# File lib/mpxj/assignment_methods.rb, line 416
def baseline7_finish
  get_date_value(attribute_values['baseline7_finish'])
end
baseline7_start() click to toggle source

Retrieve the Baseline7 Start value

@return Baseline7 Start value

# File lib/mpxj/assignment_methods.rb, line 423
def baseline7_start
  get_date_value(attribute_values['baseline7_start'])
end
baseline7_work() click to toggle source

Retrieve the Baseline7 Work value

@return Baseline7 Work value

# File lib/mpxj/assignment_methods.rb, line 430
def baseline7_work
  get_duration_value(attribute_values['baseline7_work'])
end
baseline8_budget_cost() click to toggle source

Retrieve the Baseline8 Budget Cost value

@return Baseline8 Budget Cost value

# File lib/mpxj/assignment_methods.rb, line 437
def baseline8_budget_cost
  get_float_value(attribute_values['baseline8_budget_cost'])
end
baseline8_budget_work() click to toggle source

Retrieve the Baseline8 Budget Work value

@return Baseline8 Budget Work value

# File lib/mpxj/assignment_methods.rb, line 444
def baseline8_budget_work
  get_duration_value(attribute_values['baseline8_budget_work'])
end
baseline8_cost() click to toggle source

Retrieve the Baseline8 Cost value

@return Baseline8 Cost value

# File lib/mpxj/assignment_methods.rb, line 451
def baseline8_cost
  get_float_value(attribute_values['baseline8_cost'])
end
baseline8_finish() click to toggle source

Retrieve the Baseline8 Finish value

@return Baseline8 Finish value

# File lib/mpxj/assignment_methods.rb, line 458
def baseline8_finish
  get_date_value(attribute_values['baseline8_finish'])
end
baseline8_start() click to toggle source

Retrieve the Baseline8 Start value

@return Baseline8 Start value

# File lib/mpxj/assignment_methods.rb, line 465
def baseline8_start
  get_date_value(attribute_values['baseline8_start'])
end
baseline8_work() click to toggle source

Retrieve the Baseline8 Work value

@return Baseline8 Work value

# File lib/mpxj/assignment_methods.rb, line 472
def baseline8_work
  get_duration_value(attribute_values['baseline8_work'])
end
baseline9_budget_cost() click to toggle source

Retrieve the Baseline9 Budget Cost value

@return Baseline9 Budget Cost value

# File lib/mpxj/assignment_methods.rb, line 479
def baseline9_budget_cost
  get_float_value(attribute_values['baseline9_budget_cost'])
end
baseline9_budget_work() click to toggle source

Retrieve the Baseline9 Budget Work value

@return Baseline9 Budget Work value

# File lib/mpxj/assignment_methods.rb, line 486
def baseline9_budget_work
  get_duration_value(attribute_values['baseline9_budget_work'])
end
baseline9_cost() click to toggle source

Retrieve the Baseline9 Cost value

@return Baseline9 Cost value

# File lib/mpxj/assignment_methods.rb, line 493
def baseline9_cost
  get_float_value(attribute_values['baseline9_cost'])
end
baseline9_finish() click to toggle source

Retrieve the Baseline9 Finish value

@return Baseline9 Finish value

# File lib/mpxj/assignment_methods.rb, line 500
def baseline9_finish
  get_date_value(attribute_values['baseline9_finish'])
end
baseline9_start() click to toggle source

Retrieve the Baseline9 Start value

@return Baseline9 Start value

# File lib/mpxj/assignment_methods.rb, line 507
def baseline9_start
  get_date_value(attribute_values['baseline9_start'])
end
baseline9_work() click to toggle source

Retrieve the Baseline9 Work value

@return Baseline9 Work value

# File lib/mpxj/assignment_methods.rb, line 514
def baseline9_work
  get_duration_value(attribute_values['baseline9_work'])
end
baseline_budget_cost() click to toggle source

Retrieve the Baseline Budget Cost value

@return Baseline Budget Cost value

# File lib/mpxj/assignment_methods.rb, line 521
def baseline_budget_cost
  get_float_value(attribute_values['baseline_budget_cost'])
end
baseline_budget_work() click to toggle source

Retrieve the Baseline Budget Work value

@return Baseline Budget Work value

# File lib/mpxj/assignment_methods.rb, line 528
def baseline_budget_work
  get_duration_value(attribute_values['baseline_budget_work'])
end
baseline_cost() click to toggle source

Retrieve the Baseline Cost value

@return Baseline Cost value

# File lib/mpxj/assignment_methods.rb, line 535
def baseline_cost
  get_float_value(attribute_values['baseline_cost'])
end
baseline_finish() click to toggle source

Retrieve the Baseline Finish value

@return Baseline Finish value

# File lib/mpxj/assignment_methods.rb, line 542
def baseline_finish
  get_date_value(attribute_values['baseline_finish'])
end
baseline_start() click to toggle source

Retrieve the Baseline Start value

@return Baseline Start value

# File lib/mpxj/assignment_methods.rb, line 549
def baseline_start
  get_date_value(attribute_values['baseline_start'])
end
baseline_work() click to toggle source

Retrieve the Baseline Work value

@return Baseline Work value

# File lib/mpxj/assignment_methods.rb, line 556
def baseline_work
  get_duration_value(attribute_values['baseline_work'])
end
bcwp() click to toggle source

Retrieve the BCWP value

@return BCWP value

# File lib/mpxj/assignment_methods.rb, line 563
def bcwp
  get_float_value(attribute_values['bcwp'])
end
bcws() click to toggle source

Retrieve the BCWS value

@return BCWS value

# File lib/mpxj/assignment_methods.rb, line 570
def bcws
  get_float_value(attribute_values['bcws'])
end
budget_cost() click to toggle source

Retrieve the Budget Cost value

@return Budget Cost value

# File lib/mpxj/assignment_methods.rb, line 577
def budget_cost
  get_float_value(attribute_values['budget_cost'])
end
budget_work() click to toggle source

Retrieve the Budget Work value

@return Budget Work value

# File lib/mpxj/assignment_methods.rb, line 584
def budget_work
  get_duration_value(attribute_values['budget_work'])
end
calculate_costs_from_units() click to toggle source

Retrieve the Calculate Costs From Units value

@return Calculate Costs From Units value

# File lib/mpxj/assignment_methods.rb, line 591
def calculate_costs_from_units
  get_boolean_value(attribute_values['calculate_costs_from_units'])
end
confirmed() click to toggle source

Retrieve the Confirmed value

@return Confirmed value

# File lib/mpxj/assignment_methods.rb, line 598
def confirmed
  get_boolean_value(attribute_values['confirmed'])
end
cost() click to toggle source

Retrieve the Cost value

@return Cost value

# File lib/mpxj/assignment_methods.rb, line 605
def cost
  get_float_value(attribute_values['cost'])
end
cost1() click to toggle source

Retrieve the Cost1 value

@return Cost1 value

# File lib/mpxj/assignment_methods.rb, line 612
def cost1
  get_float_value(attribute_values['cost1'])
end
cost10() click to toggle source

Retrieve the Cost10 value

@return Cost10 value

# File lib/mpxj/assignment_methods.rb, line 619
def cost10
  get_float_value(attribute_values['cost10'])
end
cost2() click to toggle source

Retrieve the Cost2 value

@return Cost2 value

# File lib/mpxj/assignment_methods.rb, line 626
def cost2
  get_float_value(attribute_values['cost2'])
end
cost3() click to toggle source

Retrieve the Cost3 value

@return Cost3 value

# File lib/mpxj/assignment_methods.rb, line 633
def cost3
  get_float_value(attribute_values['cost3'])
end
cost4() click to toggle source

Retrieve the Cost4 value

@return Cost4 value

# File lib/mpxj/assignment_methods.rb, line 640
def cost4
  get_float_value(attribute_values['cost4'])
end
cost5() click to toggle source

Retrieve the Cost5 value

@return Cost5 value

# File lib/mpxj/assignment_methods.rb, line 647
def cost5
  get_float_value(attribute_values['cost5'])
end
cost6() click to toggle source

Retrieve the Cost6 value

@return Cost6 value

# File lib/mpxj/assignment_methods.rb, line 654
def cost6
  get_float_value(attribute_values['cost6'])
end
cost7() click to toggle source

Retrieve the Cost7 value

@return Cost7 value

# File lib/mpxj/assignment_methods.rb, line 661
def cost7
  get_float_value(attribute_values['cost7'])
end
cost8() click to toggle source

Retrieve the Cost8 value

@return Cost8 value

# File lib/mpxj/assignment_methods.rb, line 668
def cost8
  get_float_value(attribute_values['cost8'])
end
cost9() click to toggle source

Retrieve the Cost9 value

@return Cost9 value

# File lib/mpxj/assignment_methods.rb, line 675
def cost9
  get_float_value(attribute_values['cost9'])
end
cost_account_unique_id() click to toggle source

Retrieve the Cost Account ID value

@return Cost Account ID value

# File lib/mpxj/assignment_methods.rb, line 682
def cost_account_unique_id
  get_integer_value(attribute_values['cost_account_unique_id'])
end
cost_rate_table() click to toggle source

Retrieve the Cost Rate Table value

@return Cost Rate Table value

# File lib/mpxj/assignment_methods.rb, line 689
def cost_rate_table
  get_integer_value(attribute_values['cost_rate_table'])
end
cost_variance() click to toggle source

Retrieve the Cost Variance value

@return Cost Variance value

# File lib/mpxj/assignment_methods.rb, line 696
def cost_variance
  get_float_value(attribute_values['cost_variance'])
end
created() click to toggle source

Retrieve the Created value

@return Created value

# File lib/mpxj/assignment_methods.rb, line 703
def created
  get_date_value(attribute_values['created'])
end
cv() click to toggle source

Retrieve the CV value

@return CV value

# File lib/mpxj/assignment_methods.rb, line 710
def cv
  get_float_value(attribute_values['cv'])
end
date1() click to toggle source

Retrieve the Date1 value

@return Date1 value

# File lib/mpxj/assignment_methods.rb, line 717
def date1
  get_date_value(attribute_values['date1'])
end
date10() click to toggle source

Retrieve the Date10 value

@return Date10 value

# File lib/mpxj/assignment_methods.rb, line 724
def date10
  get_date_value(attribute_values['date10'])
end
date2() click to toggle source

Retrieve the Date2 value

@return Date2 value

# File lib/mpxj/assignment_methods.rb, line 731
def date2
  get_date_value(attribute_values['date2'])
end
date3() click to toggle source

Retrieve the Date3 value

@return Date3 value

# File lib/mpxj/assignment_methods.rb, line 738
def date3
  get_date_value(attribute_values['date3'])
end
date4() click to toggle source

Retrieve the Date4 value

@return Date4 value

# File lib/mpxj/assignment_methods.rb, line 745
def date4
  get_date_value(attribute_values['date4'])
end
date5() click to toggle source

Retrieve the Date5 value

@return Date5 value

# File lib/mpxj/assignment_methods.rb, line 752
def date5
  get_date_value(attribute_values['date5'])
end
date6() click to toggle source

Retrieve the Date6 value

@return Date6 value

# File lib/mpxj/assignment_methods.rb, line 759
def date6
  get_date_value(attribute_values['date6'])
end
date7() click to toggle source

Retrieve the Date7 value

@return Date7 value

# File lib/mpxj/assignment_methods.rb, line 766
def date7
  get_date_value(attribute_values['date7'])
end
date8() click to toggle source

Retrieve the Date8 value

@return Date8 value

# File lib/mpxj/assignment_methods.rb, line 773
def date8
  get_date_value(attribute_values['date8'])
end
date9() click to toggle source

Retrieve the Date9 value

@return Date9 value

# File lib/mpxj/assignment_methods.rb, line 780
def date9
  get_date_value(attribute_values['date9'])
end
duration1() click to toggle source

Retrieve the Duration1 value

@return Duration1 value

# File lib/mpxj/assignment_methods.rb, line 787
def duration1
  get_duration_value(attribute_values['duration1'])
end
duration10() click to toggle source

Retrieve the Duration10 value

@return Duration10 value

# File lib/mpxj/assignment_methods.rb, line 794
def duration10
  get_duration_value(attribute_values['duration10'])
end
duration10_units() click to toggle source

Retrieve the Duration10 Units value

@return Duration10 Units value

# File lib/mpxj/assignment_methods.rb, line 801
def duration10_units
  attribute_values['duration10_units']
end
duration1_units() click to toggle source

Retrieve the Duration1 Units value

@return Duration1 Units value

# File lib/mpxj/assignment_methods.rb, line 808
def duration1_units
  attribute_values['duration1_units']
end
duration2() click to toggle source

Retrieve the Duration2 value

@return Duration2 value

# File lib/mpxj/assignment_methods.rb, line 815
def duration2
  get_duration_value(attribute_values['duration2'])
end
duration2_units() click to toggle source

Retrieve the Duration2 Units value

@return Duration2 Units value

# File lib/mpxj/assignment_methods.rb, line 822
def duration2_units
  attribute_values['duration2_units']
end
duration3() click to toggle source

Retrieve the Duration3 value

@return Duration3 value

# File lib/mpxj/assignment_methods.rb, line 829
def duration3
  get_duration_value(attribute_values['duration3'])
end
duration3_units() click to toggle source

Retrieve the Duration3 Units value

@return Duration3 Units value

# File lib/mpxj/assignment_methods.rb, line 836
def duration3_units
  attribute_values['duration3_units']
end
duration4() click to toggle source

Retrieve the Duration4 value

@return Duration4 value

# File lib/mpxj/assignment_methods.rb, line 843
def duration4
  get_duration_value(attribute_values['duration4'])
end
duration4_units() click to toggle source

Retrieve the Duration4 Units value

@return Duration4 Units value

# File lib/mpxj/assignment_methods.rb, line 850
def duration4_units
  attribute_values['duration4_units']
end
duration5() click to toggle source

Retrieve the Duration5 value

@return Duration5 value

# File lib/mpxj/assignment_methods.rb, line 857
def duration5
  get_duration_value(attribute_values['duration5'])
end
duration5_units() click to toggle source

Retrieve the Duration5 Units value

@return Duration5 Units value

# File lib/mpxj/assignment_methods.rb, line 864
def duration5_units
  attribute_values['duration5_units']
end
duration6() click to toggle source

Retrieve the Duration6 value

@return Duration6 value

# File lib/mpxj/assignment_methods.rb, line 871
def duration6
  get_duration_value(attribute_values['duration6'])
end
duration6_units() click to toggle source

Retrieve the Duration6 Units value

@return Duration6 Units value

# File lib/mpxj/assignment_methods.rb, line 878
def duration6_units
  attribute_values['duration6_units']
end
duration7() click to toggle source

Retrieve the Duration7 value

@return Duration7 value

# File lib/mpxj/assignment_methods.rb, line 885
def duration7
  get_duration_value(attribute_values['duration7'])
end
duration7_units() click to toggle source

Retrieve the Duration7 Units value

@return Duration7 Units value

# File lib/mpxj/assignment_methods.rb, line 892
def duration7_units
  attribute_values['duration7_units']
end
duration8() click to toggle source

Retrieve the Duration8 value

@return Duration8 value

# File lib/mpxj/assignment_methods.rb, line 899
def duration8
  get_duration_value(attribute_values['duration8'])
end
duration8_units() click to toggle source

Retrieve the Duration8 Units value

@return Duration8 Units value

# File lib/mpxj/assignment_methods.rb, line 906
def duration8_units
  attribute_values['duration8_units']
end
duration9() click to toggle source

Retrieve the Duration9 value

@return Duration9 value

# File lib/mpxj/assignment_methods.rb, line 913
def duration9
  get_duration_value(attribute_values['duration9'])
end
duration9_units() click to toggle source

Retrieve the Duration9 Units value

@return Duration9 Units value

# File lib/mpxj/assignment_methods.rb, line 920
def duration9_units
  attribute_values['duration9_units']
end
enterprise_cost1() click to toggle source

Retrieve the Enterprise Cost1 value

@return Enterprise Cost1 value

# File lib/mpxj/assignment_methods.rb, line 927
def enterprise_cost1
  get_float_value(attribute_values['enterprise_cost1'])
end
enterprise_cost10() click to toggle source

Retrieve the Enterprise Cost10 value

@return Enterprise Cost10 value

# File lib/mpxj/assignment_methods.rb, line 934
def enterprise_cost10
  get_float_value(attribute_values['enterprise_cost10'])
end
enterprise_cost2() click to toggle source

Retrieve the Enterprise Cost2 value

@return Enterprise Cost2 value

# File lib/mpxj/assignment_methods.rb, line 941
def enterprise_cost2
  get_float_value(attribute_values['enterprise_cost2'])
end
enterprise_cost3() click to toggle source

Retrieve the Enterprise Cost3 value

@return Enterprise Cost3 value

# File lib/mpxj/assignment_methods.rb, line 948
def enterprise_cost3
  get_float_value(attribute_values['enterprise_cost3'])
end
enterprise_cost4() click to toggle source

Retrieve the Enterprise Cost4 value

@return Enterprise Cost4 value

# File lib/mpxj/assignment_methods.rb, line 955
def enterprise_cost4
  get_float_value(attribute_values['enterprise_cost4'])
end
enterprise_cost5() click to toggle source

Retrieve the Enterprise Cost5 value

@return Enterprise Cost5 value

# File lib/mpxj/assignment_methods.rb, line 962
def enterprise_cost5
  get_float_value(attribute_values['enterprise_cost5'])
end
enterprise_cost6() click to toggle source

Retrieve the Enterprise Cost6 value

@return Enterprise Cost6 value

# File lib/mpxj/assignment_methods.rb, line 969
def enterprise_cost6
  get_float_value(attribute_values['enterprise_cost6'])
end
enterprise_cost7() click to toggle source

Retrieve the Enterprise Cost7 value

@return Enterprise Cost7 value

# File lib/mpxj/assignment_methods.rb, line 976
def enterprise_cost7
  get_float_value(attribute_values['enterprise_cost7'])
end
enterprise_cost8() click to toggle source

Retrieve the Enterprise Cost8 value

@return Enterprise Cost8 value

# File lib/mpxj/assignment_methods.rb, line 983
def enterprise_cost8
  get_float_value(attribute_values['enterprise_cost8'])
end
enterprise_cost9() click to toggle source

Retrieve the Enterprise Cost9 value

@return Enterprise Cost9 value

# File lib/mpxj/assignment_methods.rb, line 990
def enterprise_cost9
  get_float_value(attribute_values['enterprise_cost9'])
end
enterprise_date1() click to toggle source

Retrieve the Enterprise Date1 value

@return Enterprise Date1 value

# File lib/mpxj/assignment_methods.rb, line 997
def enterprise_date1
  get_date_value(attribute_values['enterprise_date1'])
end
enterprise_date10() click to toggle source

Retrieve the Enterprise Date10 value

@return Enterprise Date10 value

# File lib/mpxj/assignment_methods.rb, line 1004
def enterprise_date10
  get_date_value(attribute_values['enterprise_date10'])
end
enterprise_date11() click to toggle source

Retrieve the Enterprise Date11 value

@return Enterprise Date11 value

# File lib/mpxj/assignment_methods.rb, line 1011
def enterprise_date11
  get_date_value(attribute_values['enterprise_date11'])
end
enterprise_date12() click to toggle source

Retrieve the Enterprise Date12 value

@return Enterprise Date12 value

# File lib/mpxj/assignment_methods.rb, line 1018
def enterprise_date12
  get_date_value(attribute_values['enterprise_date12'])
end
enterprise_date13() click to toggle source

Retrieve the Enterprise Date13 value

@return Enterprise Date13 value

# File lib/mpxj/assignment_methods.rb, line 1025
def enterprise_date13
  get_date_value(attribute_values['enterprise_date13'])
end
enterprise_date14() click to toggle source

Retrieve the Enterprise Date14 value

@return Enterprise Date14 value

# File lib/mpxj/assignment_methods.rb, line 1032
def enterprise_date14
  get_date_value(attribute_values['enterprise_date14'])
end
enterprise_date15() click to toggle source

Retrieve the Enterprise Date15 value

@return Enterprise Date15 value

# File lib/mpxj/assignment_methods.rb, line 1039
def enterprise_date15
  get_date_value(attribute_values['enterprise_date15'])
end
enterprise_date16() click to toggle source

Retrieve the Enterprise Date16 value

@return Enterprise Date16 value

# File lib/mpxj/assignment_methods.rb, line 1046
def enterprise_date16
  get_date_value(attribute_values['enterprise_date16'])
end
enterprise_date17() click to toggle source

Retrieve the Enterprise Date17 value

@return Enterprise Date17 value

# File lib/mpxj/assignment_methods.rb, line 1053
def enterprise_date17
  get_date_value(attribute_values['enterprise_date17'])
end
enterprise_date18() click to toggle source

Retrieve the Enterprise Date18 value

@return Enterprise Date18 value

# File lib/mpxj/assignment_methods.rb, line 1060
def enterprise_date18
  get_date_value(attribute_values['enterprise_date18'])
end
enterprise_date19() click to toggle source

Retrieve the Enterprise Date19 value

@return Enterprise Date19 value

# File lib/mpxj/assignment_methods.rb, line 1067
def enterprise_date19
  get_date_value(attribute_values['enterprise_date19'])
end
enterprise_date2() click to toggle source

Retrieve the Enterprise Date2 value

@return Enterprise Date2 value

# File lib/mpxj/assignment_methods.rb, line 1074
def enterprise_date2
  get_date_value(attribute_values['enterprise_date2'])
end
enterprise_date20() click to toggle source

Retrieve the Enterprise Date20 value

@return Enterprise Date20 value

# File lib/mpxj/assignment_methods.rb, line 1081
def enterprise_date20
  get_date_value(attribute_values['enterprise_date20'])
end
enterprise_date21() click to toggle source

Retrieve the Enterprise Date21 value

@return Enterprise Date21 value

# File lib/mpxj/assignment_methods.rb, line 1088
def enterprise_date21
  get_date_value(attribute_values['enterprise_date21'])
end
enterprise_date22() click to toggle source

Retrieve the Enterprise Date22 value

@return Enterprise Date22 value

# File lib/mpxj/assignment_methods.rb, line 1095
def enterprise_date22
  get_date_value(attribute_values['enterprise_date22'])
end
enterprise_date23() click to toggle source

Retrieve the Enterprise Date23 value

@return Enterprise Date23 value

# File lib/mpxj/assignment_methods.rb, line 1102
def enterprise_date23
  get_date_value(attribute_values['enterprise_date23'])
end
enterprise_date24() click to toggle source

Retrieve the Enterprise Date24 value

@return Enterprise Date24 value

# File lib/mpxj/assignment_methods.rb, line 1109
def enterprise_date24
  get_date_value(attribute_values['enterprise_date24'])
end
enterprise_date25() click to toggle source

Retrieve the Enterprise Date25 value

@return Enterprise Date25 value

# File lib/mpxj/assignment_methods.rb, line 1116
def enterprise_date25
  get_date_value(attribute_values['enterprise_date25'])
end
enterprise_date26() click to toggle source

Retrieve the Enterprise Date26 value

@return Enterprise Date26 value

# File lib/mpxj/assignment_methods.rb, line 1123
def enterprise_date26
  get_date_value(attribute_values['enterprise_date26'])
end
enterprise_date27() click to toggle source

Retrieve the Enterprise Date27 value

@return Enterprise Date27 value

# File lib/mpxj/assignment_methods.rb, line 1130
def enterprise_date27
  get_date_value(attribute_values['enterprise_date27'])
end
enterprise_date28() click to toggle source

Retrieve the Enterprise Date28 value

@return Enterprise Date28 value

# File lib/mpxj/assignment_methods.rb, line 1137
def enterprise_date28
  get_date_value(attribute_values['enterprise_date28'])
end
enterprise_date29() click to toggle source

Retrieve the Enterprise Date29 value

@return Enterprise Date29 value

# File lib/mpxj/assignment_methods.rb, line 1144
def enterprise_date29
  get_date_value(attribute_values['enterprise_date29'])
end
enterprise_date3() click to toggle source

Retrieve the Enterprise Date3 value

@return Enterprise Date3 value

# File lib/mpxj/assignment_methods.rb, line 1151
def enterprise_date3
  get_date_value(attribute_values['enterprise_date3'])
end
enterprise_date30() click to toggle source

Retrieve the Enterprise Date30 value

@return Enterprise Date30 value

# File lib/mpxj/assignment_methods.rb, line 1158
def enterprise_date30
  get_date_value(attribute_values['enterprise_date30'])
end
enterprise_date4() click to toggle source

Retrieve the Enterprise Date4 value

@return Enterprise Date4 value

# File lib/mpxj/assignment_methods.rb, line 1165
def enterprise_date4
  get_date_value(attribute_values['enterprise_date4'])
end
enterprise_date5() click to toggle source

Retrieve the Enterprise Date5 value

@return Enterprise Date5 value

# File lib/mpxj/assignment_methods.rb, line 1172
def enterprise_date5
  get_date_value(attribute_values['enterprise_date5'])
end
enterprise_date6() click to toggle source

Retrieve the Enterprise Date6 value

@return Enterprise Date6 value

# File lib/mpxj/assignment_methods.rb, line 1179
def enterprise_date6
  get_date_value(attribute_values['enterprise_date6'])
end
enterprise_date7() click to toggle source

Retrieve the Enterprise Date7 value

@return Enterprise Date7 value

# File lib/mpxj/assignment_methods.rb, line 1186
def enterprise_date7
  get_date_value(attribute_values['enterprise_date7'])
end
enterprise_date8() click to toggle source

Retrieve the Enterprise Date8 value

@return Enterprise Date8 value

# File lib/mpxj/assignment_methods.rb, line 1193
def enterprise_date8
  get_date_value(attribute_values['enterprise_date8'])
end
enterprise_date9() click to toggle source

Retrieve the Enterprise Date9 value

@return Enterprise Date9 value

# File lib/mpxj/assignment_methods.rb, line 1200
def enterprise_date9
  get_date_value(attribute_values['enterprise_date9'])
end
enterprise_duration1() click to toggle source

Retrieve the Enterprise Duration1 value

@return Enterprise Duration1 value

# File lib/mpxj/assignment_methods.rb, line 1207
def enterprise_duration1
  get_duration_value(attribute_values['enterprise_duration1'])
end
enterprise_duration10() click to toggle source

Retrieve the Enterprise Duration10 value

@return Enterprise Duration10 value

# File lib/mpxj/assignment_methods.rb, line 1214
def enterprise_duration10
  get_duration_value(attribute_values['enterprise_duration10'])
end
enterprise_duration2() click to toggle source

Retrieve the Enterprise Duration2 value

@return Enterprise Duration2 value

# File lib/mpxj/assignment_methods.rb, line 1221
def enterprise_duration2
  get_duration_value(attribute_values['enterprise_duration2'])
end
enterprise_duration3() click to toggle source

Retrieve the Enterprise Duration3 value

@return Enterprise Duration3 value

# File lib/mpxj/assignment_methods.rb, line 1228
def enterprise_duration3
  get_duration_value(attribute_values['enterprise_duration3'])
end
enterprise_duration4() click to toggle source

Retrieve the Enterprise Duration4 value

@return Enterprise Duration4 value

# File lib/mpxj/assignment_methods.rb, line 1235
def enterprise_duration4
  get_duration_value(attribute_values['enterprise_duration4'])
end
enterprise_duration5() click to toggle source

Retrieve the Enterprise Duration5 value

@return Enterprise Duration5 value

# File lib/mpxj/assignment_methods.rb, line 1242
def enterprise_duration5
  get_duration_value(attribute_values['enterprise_duration5'])
end
enterprise_duration6() click to toggle source

Retrieve the Enterprise Duration6 value

@return Enterprise Duration6 value

# File lib/mpxj/assignment_methods.rb, line 1249
def enterprise_duration6
  get_duration_value(attribute_values['enterprise_duration6'])
end
enterprise_duration7() click to toggle source

Retrieve the Enterprise Duration7 value

@return Enterprise Duration7 value

# File lib/mpxj/assignment_methods.rb, line 1256
def enterprise_duration7
  get_duration_value(attribute_values['enterprise_duration7'])
end
enterprise_duration8() click to toggle source

Retrieve the Enterprise Duration8 value

@return Enterprise Duration8 value

# File lib/mpxj/assignment_methods.rb, line 1263
def enterprise_duration8
  get_duration_value(attribute_values['enterprise_duration8'])
end
enterprise_duration9() click to toggle source

Retrieve the Enterprise Duration9 value

@return Enterprise Duration9 value

# File lib/mpxj/assignment_methods.rb, line 1270
def enterprise_duration9
  get_duration_value(attribute_values['enterprise_duration9'])
end
enterprise_flag1() click to toggle source

Retrieve the Enterprise Flag1 value

@return Enterprise Flag1 value

# File lib/mpxj/assignment_methods.rb, line 1277
def enterprise_flag1
  get_boolean_value(attribute_values['enterprise_flag1'])
end
enterprise_flag10() click to toggle source

Retrieve the Enterprise Flag10 value

@return Enterprise Flag10 value

# File lib/mpxj/assignment_methods.rb, line 1284
def enterprise_flag10
  get_boolean_value(attribute_values['enterprise_flag10'])
end
enterprise_flag11() click to toggle source

Retrieve the Enterprise Flag11 value

@return Enterprise Flag11 value

# File lib/mpxj/assignment_methods.rb, line 1291
def enterprise_flag11
  get_boolean_value(attribute_values['enterprise_flag11'])
end
enterprise_flag12() click to toggle source

Retrieve the Enterprise Flag12 value

@return Enterprise Flag12 value

# File lib/mpxj/assignment_methods.rb, line 1298
def enterprise_flag12
  get_boolean_value(attribute_values['enterprise_flag12'])
end
enterprise_flag13() click to toggle source

Retrieve the Enterprise Flag13 value

@return Enterprise Flag13 value

# File lib/mpxj/assignment_methods.rb, line 1305
def enterprise_flag13
  get_boolean_value(attribute_values['enterprise_flag13'])
end
enterprise_flag14() click to toggle source

Retrieve the Enterprise Flag14 value

@return Enterprise Flag14 value

# File lib/mpxj/assignment_methods.rb, line 1312
def enterprise_flag14
  get_boolean_value(attribute_values['enterprise_flag14'])
end
enterprise_flag15() click to toggle source

Retrieve the Enterprise Flag15 value

@return Enterprise Flag15 value

# File lib/mpxj/assignment_methods.rb, line 1319
def enterprise_flag15
  get_boolean_value(attribute_values['enterprise_flag15'])
end
enterprise_flag16() click to toggle source

Retrieve the Enterprise Flag16 value

@return Enterprise Flag16 value

# File lib/mpxj/assignment_methods.rb, line 1326
def enterprise_flag16
  get_boolean_value(attribute_values['enterprise_flag16'])
end
enterprise_flag17() click to toggle source

Retrieve the Enterprise Flag17 value

@return Enterprise Flag17 value

# File lib/mpxj/assignment_methods.rb, line 1333
def enterprise_flag17
  get_boolean_value(attribute_values['enterprise_flag17'])
end
enterprise_flag18() click to toggle source

Retrieve the Enterprise Flag18 value

@return Enterprise Flag18 value

# File lib/mpxj/assignment_methods.rb, line 1340
def enterprise_flag18
  get_boolean_value(attribute_values['enterprise_flag18'])
end
enterprise_flag19() click to toggle source

Retrieve the Enterprise Flag19 value

@return Enterprise Flag19 value

# File lib/mpxj/assignment_methods.rb, line 1347
def enterprise_flag19
  get_boolean_value(attribute_values['enterprise_flag19'])
end
enterprise_flag2() click to toggle source

Retrieve the Enterprise Flag2 value

@return Enterprise Flag2 value

# File lib/mpxj/assignment_methods.rb, line 1354
def enterprise_flag2
  get_boolean_value(attribute_values['enterprise_flag2'])
end
enterprise_flag20() click to toggle source

Retrieve the Enterprise Flag20 value

@return Enterprise Flag20 value

# File lib/mpxj/assignment_methods.rb, line 1361
def enterprise_flag20
  get_boolean_value(attribute_values['enterprise_flag20'])
end
enterprise_flag3() click to toggle source

Retrieve the Enterprise Flag3 value

@return Enterprise Flag3 value

# File lib/mpxj/assignment_methods.rb, line 1368
def enterprise_flag3
  get_boolean_value(attribute_values['enterprise_flag3'])
end
enterprise_flag4() click to toggle source

Retrieve the Enterprise Flag4 value

@return Enterprise Flag4 value

# File lib/mpxj/assignment_methods.rb, line 1375
def enterprise_flag4
  get_boolean_value(attribute_values['enterprise_flag4'])
end
enterprise_flag5() click to toggle source

Retrieve the Enterprise Flag5 value

@return Enterprise Flag5 value

# File lib/mpxj/assignment_methods.rb, line 1382
def enterprise_flag5
  get_boolean_value(attribute_values['enterprise_flag5'])
end
enterprise_flag6() click to toggle source

Retrieve the Enterprise Flag6 value

@return Enterprise Flag6 value

# File lib/mpxj/assignment_methods.rb, line 1389
def enterprise_flag6
  get_boolean_value(attribute_values['enterprise_flag6'])
end
enterprise_flag7() click to toggle source

Retrieve the Enterprise Flag7 value

@return Enterprise Flag7 value

# File lib/mpxj/assignment_methods.rb, line 1396
def enterprise_flag7
  get_boolean_value(attribute_values['enterprise_flag7'])
end
enterprise_flag8() click to toggle source

Retrieve the Enterprise Flag8 value

@return Enterprise Flag8 value

# File lib/mpxj/assignment_methods.rb, line 1403
def enterprise_flag8
  get_boolean_value(attribute_values['enterprise_flag8'])
end
enterprise_flag9() click to toggle source

Retrieve the Enterprise Flag9 value

@return Enterprise Flag9 value

# File lib/mpxj/assignment_methods.rb, line 1410
def enterprise_flag9
  get_boolean_value(attribute_values['enterprise_flag9'])
end
enterprise_number1() click to toggle source

Retrieve the Enterprise Number1 value

@return Enterprise Number1 value

# File lib/mpxj/assignment_methods.rb, line 1417
def enterprise_number1
  get_float_value(attribute_values['enterprise_number1'])
end
enterprise_number10() click to toggle source

Retrieve the Enterprise Number10 value

@return Enterprise Number10 value

# File lib/mpxj/assignment_methods.rb, line 1424
def enterprise_number10
  get_float_value(attribute_values['enterprise_number10'])
end
enterprise_number11() click to toggle source

Retrieve the Enterprise Number11 value

@return Enterprise Number11 value

# File lib/mpxj/assignment_methods.rb, line 1431
def enterprise_number11
  get_float_value(attribute_values['enterprise_number11'])
end
enterprise_number12() click to toggle source

Retrieve the Enterprise Number12 value

@return Enterprise Number12 value

# File lib/mpxj/assignment_methods.rb, line 1438
def enterprise_number12
  get_float_value(attribute_values['enterprise_number12'])
end
enterprise_number13() click to toggle source

Retrieve the Enterprise Number13 value

@return Enterprise Number13 value

# File lib/mpxj/assignment_methods.rb, line 1445
def enterprise_number13
  get_float_value(attribute_values['enterprise_number13'])
end
enterprise_number14() click to toggle source

Retrieve the Enterprise Number14 value

@return Enterprise Number14 value

# File lib/mpxj/assignment_methods.rb, line 1452
def enterprise_number14
  get_float_value(attribute_values['enterprise_number14'])
end
enterprise_number15() click to toggle source

Retrieve the Enterprise Number15 value

@return Enterprise Number15 value

# File lib/mpxj/assignment_methods.rb, line 1459
def enterprise_number15
  get_float_value(attribute_values['enterprise_number15'])
end
enterprise_number16() click to toggle source

Retrieve the Enterprise Number16 value

@return Enterprise Number16 value

# File lib/mpxj/assignment_methods.rb, line 1466
def enterprise_number16
  get_float_value(attribute_values['enterprise_number16'])
end
enterprise_number17() click to toggle source

Retrieve the Enterprise Number17 value

@return Enterprise Number17 value

# File lib/mpxj/assignment_methods.rb, line 1473
def enterprise_number17
  get_float_value(attribute_values['enterprise_number17'])
end
enterprise_number18() click to toggle source

Retrieve the Enterprise Number18 value

@return Enterprise Number18 value

# File lib/mpxj/assignment_methods.rb, line 1480
def enterprise_number18
  get_float_value(attribute_values['enterprise_number18'])
end
enterprise_number19() click to toggle source

Retrieve the Enterprise Number19 value

@return Enterprise Number19 value

# File lib/mpxj/assignment_methods.rb, line 1487
def enterprise_number19
  get_float_value(attribute_values['enterprise_number19'])
end
enterprise_number2() click to toggle source

Retrieve the Enterprise Number2 value

@return Enterprise Number2 value

# File lib/mpxj/assignment_methods.rb, line 1494
def enterprise_number2
  get_float_value(attribute_values['enterprise_number2'])
end
enterprise_number20() click to toggle source

Retrieve the Enterprise Number20 value

@return Enterprise Number20 value

# File lib/mpxj/assignment_methods.rb, line 1501
def enterprise_number20
  get_float_value(attribute_values['enterprise_number20'])
end
enterprise_number21() click to toggle source

Retrieve the Enterprise Number21 value

@return Enterprise Number21 value

# File lib/mpxj/assignment_methods.rb, line 1508
def enterprise_number21
  get_float_value(attribute_values['enterprise_number21'])
end
enterprise_number22() click to toggle source

Retrieve the Enterprise Number22 value

@return Enterprise Number22 value

# File lib/mpxj/assignment_methods.rb, line 1515
def enterprise_number22
  get_float_value(attribute_values['enterprise_number22'])
end
enterprise_number23() click to toggle source

Retrieve the Enterprise Number23 value

@return Enterprise Number23 value

# File lib/mpxj/assignment_methods.rb, line 1522
def enterprise_number23
  get_float_value(attribute_values['enterprise_number23'])
end
enterprise_number24() click to toggle source

Retrieve the Enterprise Number24 value

@return Enterprise Number24 value

# File lib/mpxj/assignment_methods.rb, line 1529
def enterprise_number24
  get_float_value(attribute_values['enterprise_number24'])
end
enterprise_number25() click to toggle source

Retrieve the Enterprise Number25 value

@return Enterprise Number25 value

# File lib/mpxj/assignment_methods.rb, line 1536
def enterprise_number25
  get_float_value(attribute_values['enterprise_number25'])
end
enterprise_number26() click to toggle source

Retrieve the Enterprise Number26 value

@return Enterprise Number26 value

# File lib/mpxj/assignment_methods.rb, line 1543
def enterprise_number26
  get_float_value(attribute_values['enterprise_number26'])
end
enterprise_number27() click to toggle source

Retrieve the Enterprise Number27 value

@return Enterprise Number27 value

# File lib/mpxj/assignment_methods.rb, line 1550
def enterprise_number27
  get_float_value(attribute_values['enterprise_number27'])
end
enterprise_number28() click to toggle source

Retrieve the Enterprise Number28 value

@return Enterprise Number28 value

# File lib/mpxj/assignment_methods.rb, line 1557
def enterprise_number28
  get_float_value(attribute_values['enterprise_number28'])
end
enterprise_number29() click to toggle source

Retrieve the Enterprise Number29 value

@return Enterprise Number29 value

# File lib/mpxj/assignment_methods.rb, line 1564
def enterprise_number29
  get_float_value(attribute_values['enterprise_number29'])
end
enterprise_number3() click to toggle source

Retrieve the Enterprise Number3 value

@return Enterprise Number3 value

# File lib/mpxj/assignment_methods.rb, line 1571
def enterprise_number3
  get_float_value(attribute_values['enterprise_number3'])
end
enterprise_number30() click to toggle source

Retrieve the Enterprise Number30 value

@return Enterprise Number30 value

# File lib/mpxj/assignment_methods.rb, line 1578
def enterprise_number30
  get_float_value(attribute_values['enterprise_number30'])
end
enterprise_number31() click to toggle source

Retrieve the Enterprise Number31 value

@return Enterprise Number31 value

# File lib/mpxj/assignment_methods.rb, line 1585
def enterprise_number31
  get_float_value(attribute_values['enterprise_number31'])
end
enterprise_number32() click to toggle source

Retrieve the Enterprise Number32 value

@return Enterprise Number32 value

# File lib/mpxj/assignment_methods.rb, line 1592
def enterprise_number32
  get_float_value(attribute_values['enterprise_number32'])
end
enterprise_number33() click to toggle source

Retrieve the Enterprise Number33 value

@return Enterprise Number33 value

# File lib/mpxj/assignment_methods.rb, line 1599
def enterprise_number33
  get_float_value(attribute_values['enterprise_number33'])
end
enterprise_number34() click to toggle source

Retrieve the Enterprise Number34 value

@return Enterprise Number34 value

# File lib/mpxj/assignment_methods.rb, line 1606
def enterprise_number34
  get_float_value(attribute_values['enterprise_number34'])
end
enterprise_number35() click to toggle source

Retrieve the Enterprise Number35 value

@return Enterprise Number35 value

# File lib/mpxj/assignment_methods.rb, line 1613
def enterprise_number35
  get_float_value(attribute_values['enterprise_number35'])
end
enterprise_number36() click to toggle source

Retrieve the Enterprise Number36 value

@return Enterprise Number36 value

# File lib/mpxj/assignment_methods.rb, line 1620
def enterprise_number36
  get_float_value(attribute_values['enterprise_number36'])
end
enterprise_number37() click to toggle source

Retrieve the Enterprise Number37 value

@return Enterprise Number37 value

# File lib/mpxj/assignment_methods.rb, line 1627
def enterprise_number37
  get_float_value(attribute_values['enterprise_number37'])
end
enterprise_number38() click to toggle source

Retrieve the Enterprise Number38 value

@return Enterprise Number38 value

# File lib/mpxj/assignment_methods.rb, line 1634
def enterprise_number38
  get_float_value(attribute_values['enterprise_number38'])
end
enterprise_number39() click to toggle source

Retrieve the Enterprise Number39 value

@return Enterprise Number39 value

# File lib/mpxj/assignment_methods.rb, line 1641
def enterprise_number39
  get_float_value(attribute_values['enterprise_number39'])
end
enterprise_number4() click to toggle source

Retrieve the Enterprise Number4 value

@return Enterprise Number4 value

# File lib/mpxj/assignment_methods.rb, line 1648
def enterprise_number4
  get_float_value(attribute_values['enterprise_number4'])
end
enterprise_number40() click to toggle source

Retrieve the Enterprise Number40 value

@return Enterprise Number40 value

# File lib/mpxj/assignment_methods.rb, line 1655
def enterprise_number40
  get_float_value(attribute_values['enterprise_number40'])
end
enterprise_number5() click to toggle source

Retrieve the Enterprise Number5 value

@return Enterprise Number5 value

# File lib/mpxj/assignment_methods.rb, line 1662
def enterprise_number5
  get_float_value(attribute_values['enterprise_number5'])
end
enterprise_number6() click to toggle source

Retrieve the Enterprise Number6 value

@return Enterprise Number6 value

# File lib/mpxj/assignment_methods.rb, line 1669
def enterprise_number6
  get_float_value(attribute_values['enterprise_number6'])
end
enterprise_number7() click to toggle source

Retrieve the Enterprise Number7 value

@return Enterprise Number7 value

# File lib/mpxj/assignment_methods.rb, line 1676
def enterprise_number7
  get_float_value(attribute_values['enterprise_number7'])
end
enterprise_number8() click to toggle source

Retrieve the Enterprise Number8 value

@return Enterprise Number8 value

# File lib/mpxj/assignment_methods.rb, line 1683
def enterprise_number8
  get_float_value(attribute_values['enterprise_number8'])
end
enterprise_number9() click to toggle source

Retrieve the Enterprise Number9 value

@return Enterprise Number9 value

# File lib/mpxj/assignment_methods.rb, line 1690
def enterprise_number9
  get_float_value(attribute_values['enterprise_number9'])
end
enterprise_resource_multi_value20() click to toggle source

Retrieve the Enterprise Resource Multi Value20 value

@return Enterprise Resource Multi Value20 value

# File lib/mpxj/assignment_methods.rb, line 1697
def enterprise_resource_multi_value20
  attribute_values['enterprise_resource_multi_value20']
end
enterprise_resource_multi_value21() click to toggle source

Retrieve the Enterprise Resource Multi Value21 value

@return Enterprise Resource Multi Value21 value

# File lib/mpxj/assignment_methods.rb, line 1704
def enterprise_resource_multi_value21
  attribute_values['enterprise_resource_multi_value21']
end
enterprise_resource_multi_value22() click to toggle source

Retrieve the Enterprise Resource Multi Value22 value

@return Enterprise Resource Multi Value22 value

# File lib/mpxj/assignment_methods.rb, line 1711
def enterprise_resource_multi_value22
  attribute_values['enterprise_resource_multi_value22']
end
enterprise_resource_multi_value23() click to toggle source

Retrieve the Enterprise Resource Multi Value23 value

@return Enterprise Resource Multi Value23 value

# File lib/mpxj/assignment_methods.rb, line 1718
def enterprise_resource_multi_value23
  attribute_values['enterprise_resource_multi_value23']
end
enterprise_resource_multi_value24() click to toggle source

Retrieve the Enterprise Resource Multi Value24 value

@return Enterprise Resource Multi Value24 value

# File lib/mpxj/assignment_methods.rb, line 1725
def enterprise_resource_multi_value24
  attribute_values['enterprise_resource_multi_value24']
end
enterprise_resource_multi_value25() click to toggle source

Retrieve the Enterprise Resource Multi Value25 value

@return Enterprise Resource Multi Value25 value

# File lib/mpxj/assignment_methods.rb, line 1732
def enterprise_resource_multi_value25
  attribute_values['enterprise_resource_multi_value25']
end
enterprise_resource_multi_value26() click to toggle source

Retrieve the Enterprise Resource Multi Value26 value

@return Enterprise Resource Multi Value26 value

# File lib/mpxj/assignment_methods.rb, line 1739
def enterprise_resource_multi_value26
  attribute_values['enterprise_resource_multi_value26']
end
enterprise_resource_multi_value27() click to toggle source

Retrieve the Enterprise Resource Multi Value27 value

@return Enterprise Resource Multi Value27 value

# File lib/mpxj/assignment_methods.rb, line 1746
def enterprise_resource_multi_value27
  attribute_values['enterprise_resource_multi_value27']
end
enterprise_resource_multi_value28() click to toggle source

Retrieve the Enterprise Resource Multi Value28 value

@return Enterprise Resource Multi Value28 value

# File lib/mpxj/assignment_methods.rb, line 1753
def enterprise_resource_multi_value28
  attribute_values['enterprise_resource_multi_value28']
end
enterprise_resource_multi_value29() click to toggle source

Retrieve the Enterprise Resource Multi Value29 value

@return Enterprise Resource Multi Value29 value

# File lib/mpxj/assignment_methods.rb, line 1760
def enterprise_resource_multi_value29
  attribute_values['enterprise_resource_multi_value29']
end
enterprise_resource_outline_code1() click to toggle source

Retrieve the Enterprise Resource Outline Code1 value

@return Enterprise Resource Outline Code1 value

# File lib/mpxj/assignment_methods.rb, line 1767
def enterprise_resource_outline_code1
  attribute_values['enterprise_resource_outline_code1']
end
enterprise_resource_outline_code10() click to toggle source

Retrieve the Enterprise Resource Outline Code10 value

@return Enterprise Resource Outline Code10 value

# File lib/mpxj/assignment_methods.rb, line 1774
def enterprise_resource_outline_code10
  attribute_values['enterprise_resource_outline_code10']
end
enterprise_resource_outline_code11() click to toggle source

Retrieve the Enterprise Resource Outline Code11 value

@return Enterprise Resource Outline Code11 value

# File lib/mpxj/assignment_methods.rb, line 1781
def enterprise_resource_outline_code11
  attribute_values['enterprise_resource_outline_code11']
end
enterprise_resource_outline_code12() click to toggle source

Retrieve the Enterprise Resource Outline Code12 value

@return Enterprise Resource Outline Code12 value

# File lib/mpxj/assignment_methods.rb, line 1788
def enterprise_resource_outline_code12
  attribute_values['enterprise_resource_outline_code12']
end
enterprise_resource_outline_code13() click to toggle source

Retrieve the Enterprise Resource Outline Code13 value

@return Enterprise Resource Outline Code13 value

# File lib/mpxj/assignment_methods.rb, line 1795
def enterprise_resource_outline_code13
  attribute_values['enterprise_resource_outline_code13']
end
enterprise_resource_outline_code14() click to toggle source

Retrieve the Enterprise Resource Outline Code14 value

@return Enterprise Resource Outline Code14 value

# File lib/mpxj/assignment_methods.rb, line 1802
def enterprise_resource_outline_code14
  attribute_values['enterprise_resource_outline_code14']
end
enterprise_resource_outline_code15() click to toggle source

Retrieve the Enterprise Resource Outline Code15 value

@return Enterprise Resource Outline Code15 value

# File lib/mpxj/assignment_methods.rb, line 1809
def enterprise_resource_outline_code15
  attribute_values['enterprise_resource_outline_code15']
end
enterprise_resource_outline_code16() click to toggle source

Retrieve the Enterprise Resource Outline Code16 value

@return Enterprise Resource Outline Code16 value

# File lib/mpxj/assignment_methods.rb, line 1816
def enterprise_resource_outline_code16
  attribute_values['enterprise_resource_outline_code16']
end
enterprise_resource_outline_code17() click to toggle source

Retrieve the Enterprise Resource Outline Code17 value

@return Enterprise Resource Outline Code17 value

# File lib/mpxj/assignment_methods.rb, line 1823
def enterprise_resource_outline_code17
  attribute_values['enterprise_resource_outline_code17']
end
enterprise_resource_outline_code18() click to toggle source

Retrieve the Enterprise Resource Outline Code18 value

@return Enterprise Resource Outline Code18 value

# File lib/mpxj/assignment_methods.rb, line 1830
def enterprise_resource_outline_code18
  attribute_values['enterprise_resource_outline_code18']
end
enterprise_resource_outline_code19() click to toggle source

Retrieve the Enterprise Resource Outline Code19 value

@return Enterprise Resource Outline Code19 value

# File lib/mpxj/assignment_methods.rb, line 1837
def enterprise_resource_outline_code19
  attribute_values['enterprise_resource_outline_code19']
end
enterprise_resource_outline_code2() click to toggle source

Retrieve the Enterprise Resource Outline Code2 value

@return Enterprise Resource Outline Code2 value

# File lib/mpxj/assignment_methods.rb, line 1844
def enterprise_resource_outline_code2
  attribute_values['enterprise_resource_outline_code2']
end
enterprise_resource_outline_code20() click to toggle source

Retrieve the Enterprise Resource Outline Code20 value

@return Enterprise Resource Outline Code20 value

# File lib/mpxj/assignment_methods.rb, line 1851
def enterprise_resource_outline_code20
  attribute_values['enterprise_resource_outline_code20']
end
enterprise_resource_outline_code21() click to toggle source

Retrieve the Enterprise Resource Outline Code21 value

@return Enterprise Resource Outline Code21 value

# File lib/mpxj/assignment_methods.rb, line 1858
def enterprise_resource_outline_code21
  attribute_values['enterprise_resource_outline_code21']
end
enterprise_resource_outline_code22() click to toggle source

Retrieve the Enterprise Resource Outline Code22 value

@return Enterprise Resource Outline Code22 value

# File lib/mpxj/assignment_methods.rb, line 1865
def enterprise_resource_outline_code22
  attribute_values['enterprise_resource_outline_code22']
end
enterprise_resource_outline_code23() click to toggle source

Retrieve the Enterprise Resource Outline Code23 value

@return Enterprise Resource Outline Code23 value

# File lib/mpxj/assignment_methods.rb, line 1872
def enterprise_resource_outline_code23
  attribute_values['enterprise_resource_outline_code23']
end
enterprise_resource_outline_code24() click to toggle source

Retrieve the Enterprise Resource Outline Code24 value

@return Enterprise Resource Outline Code24 value

# File lib/mpxj/assignment_methods.rb, line 1879
def enterprise_resource_outline_code24
  attribute_values['enterprise_resource_outline_code24']
end
enterprise_resource_outline_code25() click to toggle source

Retrieve the Enterprise Resource Outline Code25 value

@return Enterprise Resource Outline Code25 value

# File lib/mpxj/assignment_methods.rb, line 1886
def enterprise_resource_outline_code25
  attribute_values['enterprise_resource_outline_code25']
end
enterprise_resource_outline_code26() click to toggle source

Retrieve the Enterprise Resource Outline Code26 value

@return Enterprise Resource Outline Code26 value

# File lib/mpxj/assignment_methods.rb, line 1893
def enterprise_resource_outline_code26
  attribute_values['enterprise_resource_outline_code26']
end
enterprise_resource_outline_code27() click to toggle source

Retrieve the Enterprise Resource Outline Code27 value

@return Enterprise Resource Outline Code27 value

# File lib/mpxj/assignment_methods.rb, line 1900
def enterprise_resource_outline_code27
  attribute_values['enterprise_resource_outline_code27']
end
enterprise_resource_outline_code28() click to toggle source

Retrieve the Enterprise Resource Outline Code28 value

@return Enterprise Resource Outline Code28 value

# File lib/mpxj/assignment_methods.rb, line 1907
def enterprise_resource_outline_code28
  attribute_values['enterprise_resource_outline_code28']
end
enterprise_resource_outline_code29() click to toggle source

Retrieve the Enterprise Resource Outline Code29 value

@return Enterprise Resource Outline Code29 value

# File lib/mpxj/assignment_methods.rb, line 1914
def enterprise_resource_outline_code29
  attribute_values['enterprise_resource_outline_code29']
end
enterprise_resource_outline_code3() click to toggle source

Retrieve the Enterprise Resource Outline Code3 value

@return Enterprise Resource Outline Code3 value

# File lib/mpxj/assignment_methods.rb, line 1921
def enterprise_resource_outline_code3
  attribute_values['enterprise_resource_outline_code3']
end
enterprise_resource_outline_code4() click to toggle source

Retrieve the Enterprise Resource Outline Code4 value

@return Enterprise Resource Outline Code4 value

# File lib/mpxj/assignment_methods.rb, line 1928
def enterprise_resource_outline_code4
  attribute_values['enterprise_resource_outline_code4']
end
enterprise_resource_outline_code5() click to toggle source

Retrieve the Enterprise Resource Outline Code5 value

@return Enterprise Resource Outline Code5 value

# File lib/mpxj/assignment_methods.rb, line 1935
def enterprise_resource_outline_code5
  attribute_values['enterprise_resource_outline_code5']
end
enterprise_resource_outline_code6() click to toggle source

Retrieve the Enterprise Resource Outline Code6 value

@return Enterprise Resource Outline Code6 value

# File lib/mpxj/assignment_methods.rb, line 1942
def enterprise_resource_outline_code6
  attribute_values['enterprise_resource_outline_code6']
end
enterprise_resource_outline_code7() click to toggle source

Retrieve the Enterprise Resource Outline Code7 value

@return Enterprise Resource Outline Code7 value

# File lib/mpxj/assignment_methods.rb, line 1949
def enterprise_resource_outline_code7
  attribute_values['enterprise_resource_outline_code7']
end
enterprise_resource_outline_code8() click to toggle source

Retrieve the Enterprise Resource Outline Code8 value

@return Enterprise Resource Outline Code8 value

# File lib/mpxj/assignment_methods.rb, line 1956
def enterprise_resource_outline_code8
  attribute_values['enterprise_resource_outline_code8']
end
enterprise_resource_outline_code9() click to toggle source

Retrieve the Enterprise Resource Outline Code9 value

@return Enterprise Resource Outline Code9 value

# File lib/mpxj/assignment_methods.rb, line 1963
def enterprise_resource_outline_code9
  attribute_values['enterprise_resource_outline_code9']
end
enterprise_resource_rbs() click to toggle source

Retrieve the Enterprise Resource RBS value

@return Enterprise Resource RBS value

# File lib/mpxj/assignment_methods.rb, line 1970
def enterprise_resource_rbs
  attribute_values['enterprise_resource_rbs']
end
enterprise_team_member() click to toggle source

Retrieve the Enterprise Team Member value

@return Enterprise Team Member value

# File lib/mpxj/assignment_methods.rb, line 1977
def enterprise_team_member
  attribute_values['enterprise_team_member']
end
enterprise_text1() click to toggle source

Retrieve the Enterprise Text1 value

@return Enterprise Text1 value

# File lib/mpxj/assignment_methods.rb, line 1984
def enterprise_text1
  attribute_values['enterprise_text1']
end
enterprise_text10() click to toggle source

Retrieve the Enterprise Text10 value

@return Enterprise Text10 value

# File lib/mpxj/assignment_methods.rb, line 1991
def enterprise_text10
  attribute_values['enterprise_text10']
end
enterprise_text11() click to toggle source

Retrieve the Enterprise Text11 value

@return Enterprise Text11 value

# File lib/mpxj/assignment_methods.rb, line 1998
def enterprise_text11
  attribute_values['enterprise_text11']
end
enterprise_text12() click to toggle source

Retrieve the Enterprise Text12 value

@return Enterprise Text12 value

# File lib/mpxj/assignment_methods.rb, line 2005
def enterprise_text12
  attribute_values['enterprise_text12']
end
enterprise_text13() click to toggle source

Retrieve the Enterprise Text13 value

@return Enterprise Text13 value

# File lib/mpxj/assignment_methods.rb, line 2012
def enterprise_text13
  attribute_values['enterprise_text13']
end
enterprise_text14() click to toggle source

Retrieve the Enterprise Text14 value

@return Enterprise Text14 value

# File lib/mpxj/assignment_methods.rb, line 2019
def enterprise_text14
  attribute_values['enterprise_text14']
end
enterprise_text15() click to toggle source

Retrieve the Enterprise Text15 value

@return Enterprise Text15 value

# File lib/mpxj/assignment_methods.rb, line 2026
def enterprise_text15
  attribute_values['enterprise_text15']
end
enterprise_text16() click to toggle source

Retrieve the Enterprise Text16 value

@return Enterprise Text16 value

# File lib/mpxj/assignment_methods.rb, line 2033
def enterprise_text16
  attribute_values['enterprise_text16']
end
enterprise_text17() click to toggle source

Retrieve the Enterprise Text17 value

@return Enterprise Text17 value

# File lib/mpxj/assignment_methods.rb, line 2040
def enterprise_text17
  attribute_values['enterprise_text17']
end
enterprise_text18() click to toggle source

Retrieve the Enterprise Text18 value

@return Enterprise Text18 value

# File lib/mpxj/assignment_methods.rb, line 2047
def enterprise_text18
  attribute_values['enterprise_text18']
end
enterprise_text19() click to toggle source

Retrieve the Enterprise Text19 value

@return Enterprise Text19 value

# File lib/mpxj/assignment_methods.rb, line 2054
def enterprise_text19
  attribute_values['enterprise_text19']
end
enterprise_text2() click to toggle source

Retrieve the Enterprise Text2 value

@return Enterprise Text2 value

# File lib/mpxj/assignment_methods.rb, line 2061
def enterprise_text2
  attribute_values['enterprise_text2']
end
enterprise_text20() click to toggle source

Retrieve the Enterprise Text20 value

@return Enterprise Text20 value

# File lib/mpxj/assignment_methods.rb, line 2068
def enterprise_text20
  attribute_values['enterprise_text20']
end
enterprise_text21() click to toggle source

Retrieve the Enterprise Text21 value

@return Enterprise Text21 value

# File lib/mpxj/assignment_methods.rb, line 2075
def enterprise_text21
  attribute_values['enterprise_text21']
end
enterprise_text22() click to toggle source

Retrieve the Enterprise Text22 value

@return Enterprise Text22 value

# File lib/mpxj/assignment_methods.rb, line 2082
def enterprise_text22
  attribute_values['enterprise_text22']
end
enterprise_text23() click to toggle source

Retrieve the Enterprise Text23 value

@return Enterprise Text23 value

# File lib/mpxj/assignment_methods.rb, line 2089
def enterprise_text23
  attribute_values['enterprise_text23']
end
enterprise_text24() click to toggle source

Retrieve the Enterprise Text24 value

@return Enterprise Text24 value

# File lib/mpxj/assignment_methods.rb, line 2096
def enterprise_text24
  attribute_values['enterprise_text24']
end
enterprise_text25() click to toggle source

Retrieve the Enterprise Text25 value

@return Enterprise Text25 value

# File lib/mpxj/assignment_methods.rb, line 2103
def enterprise_text25
  attribute_values['enterprise_text25']
end
enterprise_text26() click to toggle source

Retrieve the Enterprise Text26 value

@return Enterprise Text26 value

# File lib/mpxj/assignment_methods.rb, line 2110
def enterprise_text26
  attribute_values['enterprise_text26']
end
enterprise_text27() click to toggle source

Retrieve the Enterprise Text27 value

@return Enterprise Text27 value

# File lib/mpxj/assignment_methods.rb, line 2117
def enterprise_text27
  attribute_values['enterprise_text27']
end
enterprise_text28() click to toggle source

Retrieve the Enterprise Text28 value

@return Enterprise Text28 value

# File lib/mpxj/assignment_methods.rb, line 2124
def enterprise_text28
  attribute_values['enterprise_text28']
end
enterprise_text29() click to toggle source

Retrieve the Enterprise Text29 value

@return Enterprise Text29 value

# File lib/mpxj/assignment_methods.rb, line 2131
def enterprise_text29
  attribute_values['enterprise_text29']
end
enterprise_text3() click to toggle source

Retrieve the Enterprise Text3 value

@return Enterprise Text3 value

# File lib/mpxj/assignment_methods.rb, line 2138
def enterprise_text3
  attribute_values['enterprise_text3']
end
enterprise_text30() click to toggle source

Retrieve the Enterprise Text30 value

@return Enterprise Text30 value

# File lib/mpxj/assignment_methods.rb, line 2145
def enterprise_text30
  attribute_values['enterprise_text30']
end
enterprise_text31() click to toggle source

Retrieve the Enterprise Text31 value

@return Enterprise Text31 value

# File lib/mpxj/assignment_methods.rb, line 2152
def enterprise_text31
  attribute_values['enterprise_text31']
end
enterprise_text32() click to toggle source

Retrieve the Enterprise Text32 value

@return Enterprise Text32 value

# File lib/mpxj/assignment_methods.rb, line 2159
def enterprise_text32
  attribute_values['enterprise_text32']
end
enterprise_text33() click to toggle source

Retrieve the Enterprise Text33 value

@return Enterprise Text33 value

# File lib/mpxj/assignment_methods.rb, line 2166
def enterprise_text33
  attribute_values['enterprise_text33']
end
enterprise_text34() click to toggle source

Retrieve the Enterprise Text34 value

@return Enterprise Text34 value

# File lib/mpxj/assignment_methods.rb, line 2173
def enterprise_text34
  attribute_values['enterprise_text34']
end
enterprise_text35() click to toggle source

Retrieve the Enterprise Text35 value

@return Enterprise Text35 value

# File lib/mpxj/assignment_methods.rb, line 2180
def enterprise_text35
  attribute_values['enterprise_text35']
end
enterprise_text36() click to toggle source

Retrieve the Enterprise Text36 value

@return Enterprise Text36 value

# File lib/mpxj/assignment_methods.rb, line 2187
def enterprise_text36
  attribute_values['enterprise_text36']
end
enterprise_text37() click to toggle source

Retrieve the Enterprise Text37 value

@return Enterprise Text37 value

# File lib/mpxj/assignment_methods.rb, line 2194
def enterprise_text37
  attribute_values['enterprise_text37']
end
enterprise_text38() click to toggle source

Retrieve the Enterprise Text38 value

@return Enterprise Text38 value

# File lib/mpxj/assignment_methods.rb, line 2201
def enterprise_text38
  attribute_values['enterprise_text38']
end
enterprise_text39() click to toggle source

Retrieve the Enterprise Text39 value

@return Enterprise Text39 value

# File lib/mpxj/assignment_methods.rb, line 2208
def enterprise_text39
  attribute_values['enterprise_text39']
end
enterprise_text4() click to toggle source

Retrieve the Enterprise Text4 value

@return Enterprise Text4 value

# File lib/mpxj/assignment_methods.rb, line 2215
def enterprise_text4
  attribute_values['enterprise_text4']
end
enterprise_text40() click to toggle source

Retrieve the Enterprise Text40 value

@return Enterprise Text40 value

# File lib/mpxj/assignment_methods.rb, line 2222
def enterprise_text40
  attribute_values['enterprise_text40']
end
enterprise_text5() click to toggle source

Retrieve the Enterprise Text5 value

@return Enterprise Text5 value

# File lib/mpxj/assignment_methods.rb, line 2229
def enterprise_text5
  attribute_values['enterprise_text5']
end
enterprise_text6() click to toggle source

Retrieve the Enterprise Text6 value

@return Enterprise Text6 value

# File lib/mpxj/assignment_methods.rb, line 2236
def enterprise_text6
  attribute_values['enterprise_text6']
end
enterprise_text7() click to toggle source

Retrieve the Enterprise Text7 value

@return Enterprise Text7 value

# File lib/mpxj/assignment_methods.rb, line 2243
def enterprise_text7
  attribute_values['enterprise_text7']
end
enterprise_text8() click to toggle source

Retrieve the Enterprise Text8 value

@return Enterprise Text8 value

# File lib/mpxj/assignment_methods.rb, line 2250
def enterprise_text8
  attribute_values['enterprise_text8']
end
enterprise_text9() click to toggle source

Retrieve the Enterprise Text9 value

@return Enterprise Text9 value

# File lib/mpxj/assignment_methods.rb, line 2257
def enterprise_text9
  attribute_values['enterprise_text9']
end
finish() click to toggle source

Retrieve the Finish value

@return Finish value

# File lib/mpxj/assignment_methods.rb, line 2264
def finish
  get_date_value(attribute_values['finish'])
end
finish1() click to toggle source

Retrieve the Finish1 value

@return Finish1 value

# File lib/mpxj/assignment_methods.rb, line 2271
def finish1
  get_date_value(attribute_values['finish1'])
end
finish10() click to toggle source

Retrieve the Finish10 value

@return Finish10 value

# File lib/mpxj/assignment_methods.rb, line 2278
def finish10
  get_date_value(attribute_values['finish10'])
end
finish2() click to toggle source

Retrieve the Finish2 value

@return Finish2 value

# File lib/mpxj/assignment_methods.rb, line 2285
def finish2
  get_date_value(attribute_values['finish2'])
end
finish3() click to toggle source

Retrieve the Finish3 value

@return Finish3 value

# File lib/mpxj/assignment_methods.rb, line 2292
def finish3
  get_date_value(attribute_values['finish3'])
end
finish4() click to toggle source

Retrieve the Finish4 value

@return Finish4 value

# File lib/mpxj/assignment_methods.rb, line 2299
def finish4
  get_date_value(attribute_values['finish4'])
end
finish5() click to toggle source

Retrieve the Finish5 value

@return Finish5 value

# File lib/mpxj/assignment_methods.rb, line 2306
def finish5
  get_date_value(attribute_values['finish5'])
end
finish6() click to toggle source

Retrieve the Finish6 value

@return Finish6 value

# File lib/mpxj/assignment_methods.rb, line 2313
def finish6
  get_date_value(attribute_values['finish6'])
end
finish7() click to toggle source

Retrieve the Finish7 value

@return Finish7 value

# File lib/mpxj/assignment_methods.rb, line 2320
def finish7
  get_date_value(attribute_values['finish7'])
end
finish8() click to toggle source

Retrieve the Finish8 value

@return Finish8 value

# File lib/mpxj/assignment_methods.rb, line 2327
def finish8
  get_date_value(attribute_values['finish8'])
end
finish9() click to toggle source

Retrieve the Finish9 value

@return Finish9 value

# File lib/mpxj/assignment_methods.rb, line 2334
def finish9
  get_date_value(attribute_values['finish9'])
end
finish_variance() click to toggle source

Retrieve the Finish Variance value

@return Finish Variance value

# File lib/mpxj/assignment_methods.rb, line 2341
def finish_variance
  get_duration_value(attribute_values['finish_variance'])
end
fixed_material_assignment() click to toggle source

Retrieve the Fixed Material Assignment value

@return Fixed Material Assignment value

# File lib/mpxj/assignment_methods.rb, line 2348
def fixed_material_assignment
  attribute_values['fixed_material_assignment']
end
flag1() click to toggle source

Retrieve the Flag1 value

@return Flag1 value

# File lib/mpxj/assignment_methods.rb, line 2355
def flag1
  get_boolean_value(attribute_values['flag1'])
end
flag10() click to toggle source

Retrieve the Flag10 value

@return Flag10 value

# File lib/mpxj/assignment_methods.rb, line 2362
def flag10
  get_boolean_value(attribute_values['flag10'])
end
flag11() click to toggle source

Retrieve the Flag11 value

@return Flag11 value

# File lib/mpxj/assignment_methods.rb, line 2369
def flag11
  get_boolean_value(attribute_values['flag11'])
end
flag12() click to toggle source

Retrieve the Flag12 value

@return Flag12 value

# File lib/mpxj/assignment_methods.rb, line 2376
def flag12
  get_boolean_value(attribute_values['flag12'])
end
flag13() click to toggle source

Retrieve the Flag13 value

@return Flag13 value

# File lib/mpxj/assignment_methods.rb, line 2383
def flag13
  get_boolean_value(attribute_values['flag13'])
end
flag14() click to toggle source

Retrieve the Flag14 value

@return Flag14 value

# File lib/mpxj/assignment_methods.rb, line 2390
def flag14
  get_boolean_value(attribute_values['flag14'])
end
flag15() click to toggle source

Retrieve the Flag15 value

@return Flag15 value

# File lib/mpxj/assignment_methods.rb, line 2397
def flag15
  get_boolean_value(attribute_values['flag15'])
end
flag16() click to toggle source

Retrieve the Flag16 value

@return Flag16 value

# File lib/mpxj/assignment_methods.rb, line 2404
def flag16
  get_boolean_value(attribute_values['flag16'])
end
flag17() click to toggle source

Retrieve the Flag17 value

@return Flag17 value

# File lib/mpxj/assignment_methods.rb, line 2411
def flag17
  get_boolean_value(attribute_values['flag17'])
end
flag18() click to toggle source

Retrieve the Flag18 value

@return Flag18 value

# File lib/mpxj/assignment_methods.rb, line 2418
def flag18
  get_boolean_value(attribute_values['flag18'])
end
flag19() click to toggle source

Retrieve the Flag19 value

@return Flag19 value

# File lib/mpxj/assignment_methods.rb, line 2425
def flag19
  get_boolean_value(attribute_values['flag19'])
end
flag2() click to toggle source

Retrieve the Flag2 value

@return Flag2 value

# File lib/mpxj/assignment_methods.rb, line 2432
def flag2
  get_boolean_value(attribute_values['flag2'])
end
flag20() click to toggle source

Retrieve the Flag20 value

@return Flag20 value

# File lib/mpxj/assignment_methods.rb, line 2439
def flag20
  get_boolean_value(attribute_values['flag20'])
end
flag3() click to toggle source

Retrieve the Flag3 value

@return Flag3 value

# File lib/mpxj/assignment_methods.rb, line 2446
def flag3
  get_boolean_value(attribute_values['flag3'])
end
flag4() click to toggle source

Retrieve the Flag4 value

@return Flag4 value

# File lib/mpxj/assignment_methods.rb, line 2453
def flag4
  get_boolean_value(attribute_values['flag4'])
end
flag5() click to toggle source

Retrieve the Flag5 value

@return Flag5 value

# File lib/mpxj/assignment_methods.rb, line 2460
def flag5
  get_boolean_value(attribute_values['flag5'])
end
flag6() click to toggle source

Retrieve the Flag6 value

@return Flag6 value

# File lib/mpxj/assignment_methods.rb, line 2467
def flag6
  get_boolean_value(attribute_values['flag6'])
end
flag7() click to toggle source

Retrieve the Flag7 value

@return Flag7 value

# File lib/mpxj/assignment_methods.rb, line 2474
def flag7
  get_boolean_value(attribute_values['flag7'])
end
flag8() click to toggle source

Retrieve the Flag8 value

@return Flag8 value

# File lib/mpxj/assignment_methods.rb, line 2481
def flag8
  get_boolean_value(attribute_values['flag8'])
end
flag9() click to toggle source

Retrieve the Flag9 value

@return Flag9 value

# File lib/mpxj/assignment_methods.rb, line 2488
def flag9
  get_boolean_value(attribute_values['flag9'])
end
guid() click to toggle source

Retrieve the Assignment GUID value

@return Assignment GUID value

# File lib/mpxj/assignment_methods.rb, line 2495
def guid
  attribute_values['guid']
end
index() click to toggle source

Retrieve the Index value

@return Index value

# File lib/mpxj/assignment_methods.rb, line 2544
def index
  get_integer_value(attribute_values['index'])
end
leveling_delay() click to toggle source

Retrieve the Leveling Delay value

@return Leveling Delay value

# File lib/mpxj/assignment_methods.rb, line 2551
def leveling_delay
  get_duration_value(attribute_values['leveling_delay'])
end
leveling_delay_units() click to toggle source

Retrieve the Leveling Delay Units value

@return Leveling Delay Units value

# File lib/mpxj/assignment_methods.rb, line 2558
def leveling_delay_units
  attribute_values['leveling_delay_units']
end
linked_fields() click to toggle source

Retrieve the Linked Fields value

@return Linked Fields value

# File lib/mpxj/assignment_methods.rb, line 2565
def linked_fields
  get_boolean_value(attribute_values['linked_fields'])
end
notes() click to toggle source

Retrieve the Notes value

@return Notes value

# File lib/mpxj/assignment_methods.rb, line 2572
def notes
  attribute_values['notes']
end
number1() click to toggle source

Retrieve the Number1 value

@return Number1 value

# File lib/mpxj/assignment_methods.rb, line 2579
def number1
  get_float_value(attribute_values['number1'])
end
number10() click to toggle source

Retrieve the Number10 value

@return Number10 value

# File lib/mpxj/assignment_methods.rb, line 2586
def number10
  get_float_value(attribute_values['number10'])
end
number11() click to toggle source

Retrieve the Number11 value

@return Number11 value

# File lib/mpxj/assignment_methods.rb, line 2593
def number11
  get_float_value(attribute_values['number11'])
end
number12() click to toggle source

Retrieve the Number12 value

@return Number12 value

# File lib/mpxj/assignment_methods.rb, line 2600
def number12
  get_float_value(attribute_values['number12'])
end
number13() click to toggle source

Retrieve the Number13 value

@return Number13 value

# File lib/mpxj/assignment_methods.rb, line 2607
def number13
  get_float_value(attribute_values['number13'])
end
number14() click to toggle source

Retrieve the Number14 value

@return Number14 value

# File lib/mpxj/assignment_methods.rb, line 2614
def number14
  get_float_value(attribute_values['number14'])
end
number15() click to toggle source

Retrieve the Number15 value

@return Number15 value

# File lib/mpxj/assignment_methods.rb, line 2621
def number15
  get_float_value(attribute_values['number15'])
end
number16() click to toggle source

Retrieve the Number16 value

@return Number16 value

# File lib/mpxj/assignment_methods.rb, line 2628
def number16
  get_float_value(attribute_values['number16'])
end
number17() click to toggle source

Retrieve the Number17 value

@return Number17 value

# File lib/mpxj/assignment_methods.rb, line 2635
def number17
  get_float_value(attribute_values['number17'])
end
number18() click to toggle source

Retrieve the Number18 value

@return Number18 value

# File lib/mpxj/assignment_methods.rb, line 2642
def number18
  get_float_value(attribute_values['number18'])
end
number19() click to toggle source

Retrieve the Number19 value

@return Number19 value

# File lib/mpxj/assignment_methods.rb, line 2649
def number19
  get_float_value(attribute_values['number19'])
end
number2() click to toggle source

Retrieve the Number2 value

@return Number2 value

# File lib/mpxj/assignment_methods.rb, line 2656
def number2
  get_float_value(attribute_values['number2'])
end
number20() click to toggle source

Retrieve the Number20 value

@return Number20 value

# File lib/mpxj/assignment_methods.rb, line 2663
def number20
  get_float_value(attribute_values['number20'])
end
number3() click to toggle source

Retrieve the Number3 value

@return Number3 value

# File lib/mpxj/assignment_methods.rb, line 2670
def number3
  get_float_value(attribute_values['number3'])
end
number4() click to toggle source

Retrieve the Number4 value

@return Number4 value

# File lib/mpxj/assignment_methods.rb, line 2677
def number4
  get_float_value(attribute_values['number4'])
end
number5() click to toggle source

Retrieve the Number5 value

@return Number5 value

# File lib/mpxj/assignment_methods.rb, line 2684
def number5
  get_float_value(attribute_values['number5'])
end
number6() click to toggle source

Retrieve the Number6 value

@return Number6 value

# File lib/mpxj/assignment_methods.rb, line 2691
def number6
  get_float_value(attribute_values['number6'])
end
number7() click to toggle source

Retrieve the Number7 value

@return Number7 value

# File lib/mpxj/assignment_methods.rb, line 2698
def number7
  get_float_value(attribute_values['number7'])
end
number8() click to toggle source

Retrieve the Number8 value

@return Number8 value

# File lib/mpxj/assignment_methods.rb, line 2705
def number8
  get_float_value(attribute_values['number8'])
end
number9() click to toggle source

Retrieve the Number9 value

@return Number9 value

# File lib/mpxj/assignment_methods.rb, line 2712
def number9
  get_float_value(attribute_values['number9'])
end
overallocated() click to toggle source

Retrieve the Overallocated value

@return Overallocated value

# File lib/mpxj/assignment_methods.rb, line 2719
def overallocated
  get_boolean_value(attribute_values['overallocated'])
end
override_rate() click to toggle source

Retrieve the Override Rate value

@return Override Rate value

# File lib/mpxj/assignment_methods.rb, line 2726
def override_rate
  attribute_values['override_rate']
end
overtime_cost() click to toggle source

Retrieve the Overtime Cost value

@return Overtime Cost value

# File lib/mpxj/assignment_methods.rb, line 2733
def overtime_cost
  get_float_value(attribute_values['overtime_cost'])
end
overtime_work() click to toggle source

Retrieve the Overtime Work value

@return Overtime Work value

# File lib/mpxj/assignment_methods.rb, line 2740
def overtime_work
  get_duration_value(attribute_values['overtime_work'])
end
owner() click to toggle source

Retrieve the Owner value

@return Owner value

# File lib/mpxj/assignment_methods.rb, line 2747
def owner
  attribute_values['owner']
end
peak() click to toggle source

Retrieve the Peak value

@return Peak value

# File lib/mpxj/assignment_methods.rb, line 2754
def peak
  get_float_value(attribute_values['peak'])
end
percent_work_complete() click to toggle source

Retrieve the Percent Work Complete value

@return Percent Work Complete value

# File lib/mpxj/assignment_methods.rb, line 2761
def percent_work_complete
  get_float_value(attribute_values['percent_work_complete'])
end
planned_cost() click to toggle source

Retrieve the Planned Cost value

@return Planned Cost value

# File lib/mpxj/assignment_methods.rb, line 2768
def planned_cost
  get_float_value(attribute_values['planned_cost'])
end
planned_finish() click to toggle source

Retrieve the Planned Finish value

@return Planned Finish value

# File lib/mpxj/assignment_methods.rb, line 2775
def planned_finish
  get_date_value(attribute_values['planned_finish'])
end
planned_start() click to toggle source

Retrieve the Planned Start value

@return Planned Start value

# File lib/mpxj/assignment_methods.rb, line 2782
def planned_start
  get_date_value(attribute_values['planned_start'])
end
planned_work() click to toggle source

Retrieve the Planned Work value

@return Planned Work value

# File lib/mpxj/assignment_methods.rb, line 2789
def planned_work
  get_duration_value(attribute_values['planned_work'])
end
project() click to toggle source

Retrieve the Project value

@return Project value

# File lib/mpxj/assignment_methods.rb, line 2796
def project
  attribute_values['project']
end
rate_index() click to toggle source

Retrieve the Rate Index value

@return Rate Index value

# File lib/mpxj/assignment_methods.rb, line 2803
def rate_index
  get_integer_value(attribute_values['rate_index'])
end
rate_source() click to toggle source

Retrieve the Rate Source value

@return Rate Source value

# File lib/mpxj/assignment_methods.rb, line 2810
def rate_source
  attribute_values['rate_source']
end
regular_work() click to toggle source

Retrieve the Regular Work value

@return Regular Work value

# File lib/mpxj/assignment_methods.rb, line 2817
def regular_work
  get_duration_value(attribute_values['regular_work'])
end
remaining_assignment_units() click to toggle source

Retrieve the Remaining Assignment Units value

@return Remaining Assignment Units value

# File lib/mpxj/assignment_methods.rb, line 2824
def remaining_assignment_units
  get_float_value(attribute_values['remaining_assignment_units'])
end
remaining_cost() click to toggle source

Retrieve the Remaining Cost value

@return Remaining Cost value

# File lib/mpxj/assignment_methods.rb, line 2831
def remaining_cost
  get_float_value(attribute_values['remaining_cost'])
end
remaining_early_finish() click to toggle source

Retrieve the Remaining Early Finish value

@return Remaining Early Finish value

# File lib/mpxj/assignment_methods.rb, line 2838
def remaining_early_finish
  get_date_value(attribute_values['remaining_early_finish'])
end
remaining_early_start() click to toggle source

Retrieve the Remaining Early Start value

@return Remaining Early Start value

# File lib/mpxj/assignment_methods.rb, line 2845
def remaining_early_start
  get_date_value(attribute_values['remaining_early_start'])
end
remaining_late_finish() click to toggle source

Retrieve the Remaining Late Finish value

@return Remaining Late Finish value

# File lib/mpxj/assignment_methods.rb, line 2852
def remaining_late_finish
  get_date_value(attribute_values['remaining_late_finish'])
end
remaining_late_start() click to toggle source

Retrieve the Remaining Late Start value

@return Remaining Late Start value

# File lib/mpxj/assignment_methods.rb, line 2859
def remaining_late_start
  get_date_value(attribute_values['remaining_late_start'])
end
remaining_overtime_cost() click to toggle source

Retrieve the Remaining Overtime Cost value

@return Remaining Overtime Cost value

# File lib/mpxj/assignment_methods.rb, line 2866
def remaining_overtime_cost
  get_float_value(attribute_values['remaining_overtime_cost'])
end
remaining_overtime_work() click to toggle source

Retrieve the Remaining Overtime Work value

@return Remaining Overtime Work value

# File lib/mpxj/assignment_methods.rb, line 2873
def remaining_overtime_work
  get_duration_value(attribute_values['remaining_overtime_work'])
end
remaining_work() click to toggle source

Retrieve the Remaining Work value

@return Remaining Work value

# File lib/mpxj/assignment_methods.rb, line 2880
def remaining_work
  get_duration_value(attribute_values['remaining_work'])
end
resource_id() click to toggle source

Retrieve the Resource ID value

@return Resource ID value

# File lib/mpxj/assignment_methods.rb, line 2887
def resource_id
  get_integer_value(attribute_values['resource_id'])
end
resource_name() click to toggle source

Retrieve the Resource Name value

@return Resource Name value

# File lib/mpxj/assignment_methods.rb, line 2894
def resource_name
  attribute_values['resource_name']
end
resource_request_type() click to toggle source

Retrieve the Resource Request Type value

@return Resource Request Type value

# File lib/mpxj/assignment_methods.rb, line 2901
def resource_request_type
  attribute_values['resource_request_type']
end
resource_type() click to toggle source

Retrieve the Resource Type value

@return Resource Type value

# File lib/mpxj/assignment_methods.rb, line 2908
def resource_type
  attribute_values['resource_type']
end
resource_unique_id() click to toggle source

Retrieve the Resource Unique ID value

@return Resource Unique ID value

# File lib/mpxj/assignment_methods.rb, line 2915
def resource_unique_id
  get_integer_value(attribute_values['resource_unique_id'])
end
response_pending() click to toggle source

Retrieve the Response Pending value

@return Response Pending value

# File lib/mpxj/assignment_methods.rb, line 2922
def response_pending
  get_boolean_value(attribute_values['response_pending'])
end
resume() click to toggle source

Retrieve the Resume value

@return Resume value

# File lib/mpxj/assignment_methods.rb, line 2929
def resume
  get_date_value(attribute_values['resume'])
end
role_unique_id() click to toggle source

Retrieve the Role Unique ID value

@return Role Unique ID value

# File lib/mpxj/assignment_methods.rb, line 2936
def role_unique_id
  get_integer_value(attribute_values['role_unique_id'])
end
start() click to toggle source

Retrieve the Start value

@return Start value

# File lib/mpxj/assignment_methods.rb, line 2943
def start
  get_date_value(attribute_values['start'])
end
start1() click to toggle source

Retrieve the Start1 value

@return Start1 value

# File lib/mpxj/assignment_methods.rb, line 2950
def start1
  get_date_value(attribute_values['start1'])
end
start10() click to toggle source

Retrieve the Start10 value

@return Start10 value

# File lib/mpxj/assignment_methods.rb, line 2957
def start10
  get_date_value(attribute_values['start10'])
end
start2() click to toggle source

Retrieve the Start2 value

@return Start2 value

# File lib/mpxj/assignment_methods.rb, line 2964
def start2
  get_date_value(attribute_values['start2'])
end
start3() click to toggle source

Retrieve the Start3 value

@return Start3 value

# File lib/mpxj/assignment_methods.rb, line 2971
def start3
  get_date_value(attribute_values['start3'])
end
start4() click to toggle source

Retrieve the Start4 value

@return Start4 value

# File lib/mpxj/assignment_methods.rb, line 2978
def start4
  get_date_value(attribute_values['start4'])
end
start5() click to toggle source

Retrieve the Start5 value

@return Start5 value

# File lib/mpxj/assignment_methods.rb, line 2985
def start5
  get_date_value(attribute_values['start5'])
end
start6() click to toggle source

Retrieve the Start6 value

@return Start6 value

# File lib/mpxj/assignment_methods.rb, line 2992
def start6
  get_date_value(attribute_values['start6'])
end
start7() click to toggle source

Retrieve the Start7 value

@return Start7 value

# File lib/mpxj/assignment_methods.rb, line 2999
def start7
  get_date_value(attribute_values['start7'])
end
start8() click to toggle source

Retrieve the Start8 value

@return Start8 value

# File lib/mpxj/assignment_methods.rb, line 3006
def start8
  get_date_value(attribute_values['start8'])
end
start9() click to toggle source

Retrieve the Start9 value

@return Start9 value

# File lib/mpxj/assignment_methods.rb, line 3013
def start9
  get_date_value(attribute_values['start9'])
end
start_variance() click to toggle source

Retrieve the Start Variance value

@return Start Variance value

# File lib/mpxj/assignment_methods.rb, line 3020
def start_variance
  get_duration_value(attribute_values['start_variance'])
end
stop() click to toggle source

Retrieve the Stop value

@return Stop value

# File lib/mpxj/assignment_methods.rb, line 3027
def stop
  get_date_value(attribute_values['stop'])
end
summary() click to toggle source

Retrieve the Summary value

@return Summary value

# File lib/mpxj/assignment_methods.rb, line 3034
def summary
  attribute_values['summary']
end
sv() click to toggle source

Retrieve the SV value

@return SV value

# File lib/mpxj/assignment_methods.rb, line 3041
def sv
  get_float_value(attribute_values['sv'])
end
task_id() click to toggle source

Retrieve the Task ID value

@return Task ID value

# File lib/mpxj/assignment_methods.rb, line 3048
def task_id
  get_integer_value(attribute_values['task_id'])
end
task_name() click to toggle source

Retrieve the Task Name value

@return Task Name value

# File lib/mpxj/assignment_methods.rb, line 3055
def task_name
  attribute_values['task_name']
end
task_outline_number() click to toggle source

Retrieve the Task Outline Number value

@return Task Outline Number value

# File lib/mpxj/assignment_methods.rb, line 3062
def task_outline_number
  attribute_values['task_outline_number']
end
task_summary_name() click to toggle source

Retrieve the Task Summary Name value

@return Task Summary Name value

# File lib/mpxj/assignment_methods.rb, line 3069
def task_summary_name
  attribute_values['task_summary_name']
end
task_unique_id() click to toggle source

Retrieve the Task Unique ID value

@return Task Unique ID value

# File lib/mpxj/assignment_methods.rb, line 3076
def task_unique_id
  get_integer_value(attribute_values['task_unique_id'])
end
team_status_pending() click to toggle source

Retrieve the Team Status Pending value

@return Team Status Pending value

# File lib/mpxj/assignment_methods.rb, line 3083
def team_status_pending
  get_boolean_value(attribute_values['team_status_pending'])
end
text1() click to toggle source

Retrieve the Text1 value

@return Text1 value

# File lib/mpxj/assignment_methods.rb, line 3090
def text1
  attribute_values['text1']
end
text10() click to toggle source

Retrieve the Text10 value

@return Text10 value

# File lib/mpxj/assignment_methods.rb, line 3097
def text10
  attribute_values['text10']
end
text11() click to toggle source

Retrieve the Text11 value

@return Text11 value

# File lib/mpxj/assignment_methods.rb, line 3104
def text11
  attribute_values['text11']
end
text12() click to toggle source

Retrieve the Text12 value

@return Text12 value

# File lib/mpxj/assignment_methods.rb, line 3111
def text12
  attribute_values['text12']
end
text13() click to toggle source

Retrieve the Text13 value

@return Text13 value

# File lib/mpxj/assignment_methods.rb, line 3118
def text13
  attribute_values['text13']
end
text14() click to toggle source

Retrieve the Text14 value

@return Text14 value

# File lib/mpxj/assignment_methods.rb, line 3125
def text14
  attribute_values['text14']
end
text15() click to toggle source

Retrieve the Text15 value

@return Text15 value

# File lib/mpxj/assignment_methods.rb, line 3132
def text15
  attribute_values['text15']
end
text16() click to toggle source

Retrieve the Text16 value

@return Text16 value

# File lib/mpxj/assignment_methods.rb, line 3139
def text16
  attribute_values['text16']
end
text17() click to toggle source

Retrieve the Text17 value

@return Text17 value

# File lib/mpxj/assignment_methods.rb, line 3146
def text17
  attribute_values['text17']
end
text18() click to toggle source

Retrieve the Text18 value

@return Text18 value

# File lib/mpxj/assignment_methods.rb, line 3153
def text18
  attribute_values['text18']
end
text19() click to toggle source

Retrieve the Text19 value

@return Text19 value

# File lib/mpxj/assignment_methods.rb, line 3160
def text19
  attribute_values['text19']
end
text2() click to toggle source

Retrieve the Text2 value

@return Text2 value

# File lib/mpxj/assignment_methods.rb, line 3167
def text2
  attribute_values['text2']
end
text20() click to toggle source

Retrieve the Text20 value

@return Text20 value

# File lib/mpxj/assignment_methods.rb, line 3174
def text20
  attribute_values['text20']
end
text21() click to toggle source

Retrieve the Text21 value

@return Text21 value

# File lib/mpxj/assignment_methods.rb, line 3181
def text21
  attribute_values['text21']
end
text22() click to toggle source

Retrieve the Text22 value

@return Text22 value

# File lib/mpxj/assignment_methods.rb, line 3188
def text22
  attribute_values['text22']
end
text23() click to toggle source

Retrieve the Text23 value

@return Text23 value

# File lib/mpxj/assignment_methods.rb, line 3195
def text23
  attribute_values['text23']
end
text24() click to toggle source

Retrieve the Text24 value

@return Text24 value

# File lib/mpxj/assignment_methods.rb, line 3202
def text24
  attribute_values['text24']
end
text25() click to toggle source

Retrieve the Text25 value

@return Text25 value

# File lib/mpxj/assignment_methods.rb, line 3209
def text25
  attribute_values['text25']
end
text26() click to toggle source

Retrieve the Text26 value

@return Text26 value

# File lib/mpxj/assignment_methods.rb, line 3216
def text26
  attribute_values['text26']
end
text27() click to toggle source

Retrieve the Text27 value

@return Text27 value

# File lib/mpxj/assignment_methods.rb, line 3223
def text27
  attribute_values['text27']
end
text28() click to toggle source

Retrieve the Text28 value

@return Text28 value

# File lib/mpxj/assignment_methods.rb, line 3230
def text28
  attribute_values['text28']
end
text29() click to toggle source

Retrieve the Text29 value

@return Text29 value

# File lib/mpxj/assignment_methods.rb, line 3237
def text29
  attribute_values['text29']
end
text3() click to toggle source

Retrieve the Text3 value

@return Text3 value

# File lib/mpxj/assignment_methods.rb, line 3244
def text3
  attribute_values['text3']
end
text30() click to toggle source

Retrieve the Text30 value

@return Text30 value

# File lib/mpxj/assignment_methods.rb, line 3251
def text30
  attribute_values['text30']
end
text4() click to toggle source

Retrieve the Text4 value

@return Text4 value

# File lib/mpxj/assignment_methods.rb, line 3258
def text4
  attribute_values['text4']
end
text5() click to toggle source

Retrieve the Text5 value

@return Text5 value

# File lib/mpxj/assignment_methods.rb, line 3265
def text5
  attribute_values['text5']
end
text6() click to toggle source

Retrieve the Text6 value

@return Text6 value

# File lib/mpxj/assignment_methods.rb, line 3272
def text6
  attribute_values['text6']
end
text7() click to toggle source

Retrieve the Text7 value

@return Text7 value

# File lib/mpxj/assignment_methods.rb, line 3279
def text7
  attribute_values['text7']
end
text8() click to toggle source

Retrieve the Text8 value

@return Text8 value

# File lib/mpxj/assignment_methods.rb, line 3286
def text8
  attribute_values['text8']
end
text9() click to toggle source

Retrieve the Text9 value

@return Text9 value

# File lib/mpxj/assignment_methods.rb, line 3293
def text9
  attribute_values['text9']
end
timephased_actual_overtime_work() click to toggle source

Retrieve the Timephased Actual Overtime Work value

@return Timephased Actual Overtime Work value

# File lib/mpxj/assignment_methods.rb, line 3300
def timephased_actual_overtime_work
  attribute_values['timephased_actual_overtime_work']
end
timephased_actual_work() click to toggle source

Retrieve the Timephased Actual Work value

@return Timephased Actual Work value

# File lib/mpxj/assignment_methods.rb, line 3307
def timephased_actual_work
  attribute_values['timephased_actual_work']
end
timephased_baseline10_cost() click to toggle source

Retrieve the Timephased Baseline10 Cost value

@return Timephased Baseline10 Cost value

# File lib/mpxj/assignment_methods.rb, line 3314
def timephased_baseline10_cost
  attribute_values['timephased_baseline10_cost']
end
timephased_baseline10_work() click to toggle source

Retrieve the Timephased Baseline10 Work value

@return Timephased Baseline10 Work value

# File lib/mpxj/assignment_methods.rb, line 3321
def timephased_baseline10_work
  attribute_values['timephased_baseline10_work']
end
timephased_baseline1_cost() click to toggle source

Retrieve the Timephased Baseline1 Cost value

@return Timephased Baseline1 Cost value

# File lib/mpxj/assignment_methods.rb, line 3328
def timephased_baseline1_cost
  attribute_values['timephased_baseline1_cost']
end
timephased_baseline1_work() click to toggle source

Retrieve the Timephased Baseline1 Work value

@return Timephased Baseline1 Work value

# File lib/mpxj/assignment_methods.rb, line 3335
def timephased_baseline1_work
  attribute_values['timephased_baseline1_work']
end
timephased_baseline2_cost() click to toggle source

Retrieve the Timephased Baseline2 Cost value

@return Timephased Baseline2 Cost value

# File lib/mpxj/assignment_methods.rb, line 3342
def timephased_baseline2_cost
  attribute_values['timephased_baseline2_cost']
end
timephased_baseline2_work() click to toggle source

Retrieve the Timephased Baseline2 Work value

@return Timephased Baseline2 Work value

# File lib/mpxj/assignment_methods.rb, line 3349
def timephased_baseline2_work
  attribute_values['timephased_baseline2_work']
end
timephased_baseline3_cost() click to toggle source

Retrieve the Timephased Baseline3 Cost value

@return Timephased Baseline3 Cost value

# File lib/mpxj/assignment_methods.rb, line 3356
def timephased_baseline3_cost
  attribute_values['timephased_baseline3_cost']
end
timephased_baseline3_work() click to toggle source

Retrieve the Timephased Baseline3 Work value

@return Timephased Baseline3 Work value

# File lib/mpxj/assignment_methods.rb, line 3363
def timephased_baseline3_work
  attribute_values['timephased_baseline3_work']
end
timephased_baseline4_cost() click to toggle source

Retrieve the Timephased Baseline4 Cost value

@return Timephased Baseline4 Cost value

# File lib/mpxj/assignment_methods.rb, line 3370
def timephased_baseline4_cost
  attribute_values['timephased_baseline4_cost']
end
timephased_baseline4_work() click to toggle source

Retrieve the Timephased Baseline4 Work value

@return Timephased Baseline4 Work value

# File lib/mpxj/assignment_methods.rb, line 3377
def timephased_baseline4_work
  attribute_values['timephased_baseline4_work']
end
timephased_baseline5_cost() click to toggle source

Retrieve the Timephased Baseline5 Cost value

@return Timephased Baseline5 Cost value

# File lib/mpxj/assignment_methods.rb, line 3384
def timephased_baseline5_cost
  attribute_values['timephased_baseline5_cost']
end
timephased_baseline5_work() click to toggle source

Retrieve the Timephased Baseline5 Work value

@return Timephased Baseline5 Work value

# File lib/mpxj/assignment_methods.rb, line 3391
def timephased_baseline5_work
  attribute_values['timephased_baseline5_work']
end
timephased_baseline6_cost() click to toggle source

Retrieve the Timephased Baseline6 Cost value

@return Timephased Baseline6 Cost value

# File lib/mpxj/assignment_methods.rb, line 3398
def timephased_baseline6_cost
  attribute_values['timephased_baseline6_cost']
end
timephased_baseline6_work() click to toggle source

Retrieve the Timephased Baseline6 Work value

@return Timephased Baseline6 Work value

# File lib/mpxj/assignment_methods.rb, line 3405
def timephased_baseline6_work
  attribute_values['timephased_baseline6_work']
end
timephased_baseline7_cost() click to toggle source

Retrieve the Timephased Baseline7 Cost value

@return Timephased Baseline7 Cost value

# File lib/mpxj/assignment_methods.rb, line 3412
def timephased_baseline7_cost
  attribute_values['timephased_baseline7_cost']
end
timephased_baseline7_work() click to toggle source

Retrieve the Timephased Baseline7 Work value

@return Timephased Baseline7 Work value

# File lib/mpxj/assignment_methods.rb, line 3419
def timephased_baseline7_work
  attribute_values['timephased_baseline7_work']
end
timephased_baseline8_cost() click to toggle source

Retrieve the Timephased Baseline8 Cost value

@return Timephased Baseline8 Cost value

# File lib/mpxj/assignment_methods.rb, line 3426
def timephased_baseline8_cost
  attribute_values['timephased_baseline8_cost']
end
timephased_baseline8_work() click to toggle source

Retrieve the Timephased Baseline8 Work value

@return Timephased Baseline8 Work value

# File lib/mpxj/assignment_methods.rb, line 3433
def timephased_baseline8_work
  attribute_values['timephased_baseline8_work']
end
timephased_baseline9_cost() click to toggle source

Retrieve the Timephased Baseline9 Cost value

@return Timephased Baseline9 Cost value

# File lib/mpxj/assignment_methods.rb, line 3440
def timephased_baseline9_cost
  attribute_values['timephased_baseline9_cost']
end
timephased_baseline9_work() click to toggle source

Retrieve the Timephased Baseline9 Work value

@return Timephased Baseline9 Work value

# File lib/mpxj/assignment_methods.rb, line 3447
def timephased_baseline9_work
  attribute_values['timephased_baseline9_work']
end
timephased_baseline_cost() click to toggle source

Retrieve the Timephased Baseline Cost value

@return Timephased Baseline Cost value

# File lib/mpxj/assignment_methods.rb, line 3454
def timephased_baseline_cost
  attribute_values['timephased_baseline_cost']
end
timephased_baseline_work() click to toggle source

Retrieve the Timephased Baseline Work value

@return Timephased Baseline Work value

# File lib/mpxj/assignment_methods.rb, line 3461
def timephased_baseline_work
  attribute_values['timephased_baseline_work']
end
timephased_work() click to toggle source

Retrieve the Timephased Work value

@return Timephased Work value

# File lib/mpxj/assignment_methods.rb, line 3468
def timephased_work
  attribute_values['timephased_work']
end
unavailable() click to toggle source

Retrieve the <Unavailable> value

@return <Unavailable> value

# File lib/mpxj/assignment_methods.rb, line 3475
def unavailable
  attribute_values['unavailable']
end
unique_id() click to toggle source

Retrieve the Unique ID value

@return Unique ID value

# File lib/mpxj/assignment_methods.rb, line 3482
def unique_id
  get_integer_value(attribute_values['unique_id'])
end
update_needed() click to toggle source

Retrieve the Update Needed value

@return Update Needed value

# File lib/mpxj/assignment_methods.rb, line 3489
def update_needed
  get_boolean_value(attribute_values['update_needed'])
end
vac() click to toggle source

Retrieve the VAC value

@return VAC value

# File lib/mpxj/assignment_methods.rb, line 3496
def vac
  get_float_value(attribute_values['vac'])
end
variable_rate_units() click to toggle source

Retrieve the Variable Rate Units value

@return Variable Rate Units value

# File lib/mpxj/assignment_methods.rb, line 3503
def variable_rate_units
  attribute_values['variable_rate_units']
end
wbs() click to toggle source

Retrieve the WBS value

@return WBS value

# File lib/mpxj/assignment_methods.rb, line 3510
def wbs
  attribute_values['wbs']
end
work() click to toggle source

Retrieve the Work value

@return Work value

# File lib/mpxj/assignment_methods.rb, line 3517
def work
  get_duration_value(attribute_values['work'])
end
work_contour() click to toggle source

Retrieve the Work Contour value

@return Work Contour value

# File lib/mpxj/assignment_methods.rb, line 3524
def work_contour
  attribute_values['work_contour']
end
work_variance() click to toggle source

Retrieve the Work Variance value

@return Work Variance value

# File lib/mpxj/assignment_methods.rb, line 3531
def work_variance
  get_duration_value(attribute_values['work_variance'])
end