Class: AsposeTasksCloud::ResourceAssignment

Inherits:
BaseObject
  • Object
show all
Defined in:
lib/aspose_tasks_cloud/models/resource_assignment.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BaseObject

#_deserialize, #_to_hash, #build_from_hash, #to_body, #to_hash, #to_s

Constructor Details

#initialize(attributes = {}) ⇒ ResourceAssignment

Returns a new instance of ResourceAssignment.



535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 535

def initialize(attributes = {})
  return if !attributes.is_a?(Hash) || attributes.empty?

  # convert string to symbol for hash key
  attributes = attributes.inject({}){|memo,(k,v)| memo[k.to_sym] = v; memo}

  
  if attributes[:'TaskUid']
    self.task_uid = attributes[:'TaskUid']
  end
  
  if attributes[:'ResourceUid']
    self.resource_uid = attributes[:'ResourceUid']
  end
  
  if attributes[:'Uid']
    self.uid = attributes[:'Uid']
  end
  
  if attributes[:'PercentWorkComplete']
    self.percent_work_complete = attributes[:'PercentWorkComplete']
  end
  
  if attributes[:'ActualCost']
    self.actual_cost = attributes[:'ActualCost']
  end
  
  if attributes[:'ActualFinish']
    self.actual_finish = attributes[:'ActualFinish']
  end
  
  if attributes[:'ActualOvertimeCost']
    self.actual_overtime_cost = attributes[:'ActualOvertimeCost']
  end
  
  if attributes[:'ActualOvertimeWork']
    self.actual_overtime_work = attributes[:'ActualOvertimeWork']
  end
  
  if attributes[:'ActualStart']
    self.actual_start = attributes[:'ActualStart']
  end
  
  if attributes[:'ActualWork']
    self.actual_work = attributes[:'ActualWork']
  end
  
  if attributes[:'Acwp']
    self.acwp = attributes[:'Acwp']
  end
  
  if attributes[:'Confirmed']
    self.confirmed = attributes[:'Confirmed']
  end
  
  if attributes[:'Cost']
    self.cost = attributes[:'Cost']
  end
  
  if attributes[:'CostRateTableType']
    self.cost_rate_table_type = attributes[:'CostRateTableType']
  end
  
  if attributes[:'CostVariance']
    self.cost_variance = attributes[:'CostVariance']
  end
  
  if attributes[:'Cv']
    self.cv = attributes[:'Cv']
  end
  
  if attributes[:'Delay']
    self.delay = attributes[:'Delay']
  end
  
  if attributes[:'Finish']
    self.finish = attributes[:'Finish']
  end
  
  if attributes[:'FinishVariance']
    self.finish_variance = attributes[:'FinishVariance']
  end
  
  if attributes[:'Hyperlink']
    self.hyperlink = attributes[:'Hyperlink']
  end
  
  if attributes[:'HyperlinkAddress']
    self.hyperlink_address = attributes[:'HyperlinkAddress']
  end
  
  if attributes[:'HyperlinkSubAddress']
    self.hyperlink_sub_address = attributes[:'HyperlinkSubAddress']
  end
  
  if attributes[:'WorkVariance']
    self.work_variance = attributes[:'WorkVariance']
  end
  
  if attributes[:'HasFixedRateUnits']
    self.has_fixed_rate_units = attributes[:'HasFixedRateUnits']
  end
  
  if attributes[:'FixedMaterial']
    self.fixed_material = attributes[:'FixedMaterial']
  end
  
  if attributes[:'LevelingDelay']
    self.leveling_delay = attributes[:'LevelingDelay']
  end
  
  if attributes[:'LevelingDelayFormat']
    self.leveling_delay_format = attributes[:'LevelingDelayFormat']
  end
  
  if attributes[:'LinkedFields']
    self.linked_fields = attributes[:'LinkedFields']
  end
  
  if attributes[:'Milestone']
    self.milestone = attributes[:'Milestone']
  end
  
  if attributes[:'Notes']
    self.notes = attributes[:'Notes']
  end
  
  if attributes[:'Overallocated']
    self.overallocated = attributes[:'Overallocated']
  end
  
  if attributes[:'OvertimeCost']
    self.overtime_cost = attributes[:'OvertimeCost']
  end
  
  if attributes[:'OvertimeWork']
    self.overtime_work = attributes[:'OvertimeWork']
  end
  
  if attributes[:'PeakUnits']
    self.peak_units = attributes[:'PeakUnits']
  end
  
  if attributes[:'RegularWork']
    self.regular_work = attributes[:'RegularWork']
  end
  
  if attributes[:'RemainingCost']
    self.remaining_cost = attributes[:'RemainingCost']
  end
  
  if attributes[:'RemainingOvertimeCost']
    self.remaining_overtime_cost = attributes[:'RemainingOvertimeCost']
  end
  
  if attributes[:'RemainingOvertimeWork']
    self.remaining_overtime_work = attributes[:'RemainingOvertimeWork']
  end
  
  if attributes[:'RemainingWork']
    self.remaining_work = attributes[:'RemainingWork']
  end
  
  if attributes[:'ResponsePending']
    self.response_pending = attributes[:'ResponsePending']
  end
  
  if attributes[:'Start']
    self.start = attributes[:'Start']
  end
  
  if attributes[:'Stop']
    self.stop = attributes[:'Stop']
  end
  
  if attributes[:'Resume']
    self.resume = attributes[:'Resume']
  end
  
  if attributes[:'StartVariance']
    self.start_variance = attributes[:'StartVariance']
  end
  
  if attributes[:'Summary']
    self.summary = attributes[:'Summary']
  end
  
  if attributes[:'Sv']
    self.sv = attributes[:'Sv']
  end
  
  if attributes[:'Units']
    self.units = attributes[:'Units']
  end
  
  if attributes[:'UpdateNeeded']
    self.update_needed = attributes[:'UpdateNeeded']
  end
  
  if attributes[:'Vac']
    self.vac = attributes[:'Vac']
  end
  
  if attributes[:'Work']
    self.work = attributes[:'Work']
  end
  
  if attributes[:'WorkContour']
    self.work_contour = attributes[:'WorkContour']
  end
  
  if attributes[:'Bcws']
    self.bcws = attributes[:'Bcws']
  end
  
  if attributes[:'Bcwp']
    self.bcwp = attributes[:'Bcwp']
  end
  
  if attributes[:'BookingType']
    self.booking_type = attributes[:'BookingType']
  end
  
  if attributes[:'ActualWorkProtected']
    self.actual_work_protected = attributes[:'ActualWorkProtected']
  end
  
  if attributes[:'ActualOvertimeWorkProtected']
    self.actual_overtime_work_protected = attributes[:'ActualOvertimeWorkProtected']
  end
  
  if attributes[:'CreationDate']
    self.creation_date = attributes[:'CreationDate']
  end
  
  if attributes[:'AssnOwner']
    self.assn_owner = attributes[:'AssnOwner']
  end
  
  if attributes[:'AssnOwnerGuid']
    self.assn_owner_guid = attributes[:'AssnOwnerGuid']
  end
  
  if attributes[:'BudgetCost']
    self.budget_cost = attributes[:'BudgetCost']
  end
  
  if attributes[:'BudgetWork']
    self.budget_work = attributes[:'BudgetWork']
  end
  
  if attributes[:'RateScale']
    self.rate_scale = attributes[:'RateScale']
  end
  
  if attributes[:'BaselineStart']
    self.baseline_start = attributes[:'BaselineStart']
  end
  
  if attributes[:'BaselineFinish']
    self.baseline_finish = attributes[:'BaselineFinish']
  end
  
  if attributes[:'BaselineWork']
    self.baseline_work = attributes[:'BaselineWork']
  end
  
  if attributes[:'BaselineCost']
    self.baseline_cost = attributes[:'BaselineCost']
  end
  
  if attributes[:'BaselineBcws']
    self.baseline_bcws = attributes[:'BaselineBcws']
  end
  
  if attributes[:'BaselineBcwp']
    self.baseline_bcwp = attributes[:'BaselineBcwp']
  end
  
  if attributes[:'Baseline1Start']
    self.baseline1_start = attributes[:'Baseline1Start']
  end
  
  if attributes[:'Baseline1Finish']
    self.baseline1_finish = attributes[:'Baseline1Finish']
  end
  
  if attributes[:'Baseline1Work']
    self.baseline1_work = attributes[:'Baseline1Work']
  end
  
  if attributes[:'Baseline1Cost']
    self.baseline1_cost = attributes[:'Baseline1Cost']
  end
  
  if attributes[:'Baseline1Bcws']
    self.baseline1_bcws = attributes[:'Baseline1Bcws']
  end
  
  if attributes[:'Baseline1Bcwp']
    self.baseline1_bcwp = attributes[:'Baseline1Bcwp']
  end
  
  if attributes[:'Baseline2Start']
    self.baseline2_start = attributes[:'Baseline2Start']
  end
  
  if attributes[:'Baseline2Finish']
    self.baseline2_finish = attributes[:'Baseline2Finish']
  end
  
  if attributes[:'Baseline2Work']
    self.baseline2_work = attributes[:'Baseline2Work']
  end
  
  if attributes[:'Baseline2Cost']
    self.baseline2_cost = attributes[:'Baseline2Cost']
  end
  
  if attributes[:'Baseline2Bcws']
    self.baseline2_bcws = attributes[:'Baseline2Bcws']
  end
  
  if attributes[:'Baseline2Bcwp']
    self.baseline2_bcwp = attributes[:'Baseline2Bcwp']
  end
  
  if attributes[:'Baseline3Start']
    self.baseline3_start = attributes[:'Baseline3Start']
  end
  
  if attributes[:'Baseline3Finish']
    self.baseline3_finish = attributes[:'Baseline3Finish']
  end
  
  if attributes[:'Baseline3Work']
    self.baseline3_work = attributes[:'Baseline3Work']
  end
  
  if attributes[:'Baseline3Cost']
    self.baseline3_cost = attributes[:'Baseline3Cost']
  end
  
  if attributes[:'Baseline3Bcws']
    self.baseline3_bcws = attributes[:'Baseline3Bcws']
  end
  
  if attributes[:'Baseline3Bcwp']
    self.baseline3_bcwp = attributes[:'Baseline3Bcwp']
  end
  
  if attributes[:'Baseline4Start']
    self.baseline4_start = attributes[:'Baseline4Start']
  end
  
  if attributes[:'Baseline4Finish']
    self.baseline4_finish = attributes[:'Baseline4Finish']
  end
  
  if attributes[:'Baseline4Work']
    self.baseline4_work = attributes[:'Baseline4Work']
  end
  
  if attributes[:'Baseline4Cost']
    self.baseline4_cost = attributes[:'Baseline4Cost']
  end
  
  if attributes[:'Baseline4Bcws']
    self.baseline4_bcws = attributes[:'Baseline4Bcws']
  end
  
  if attributes[:'Baseline4Bcwp']
    self.baseline4_bcwp = attributes[:'Baseline4Bcwp']
  end
  
  if attributes[:'Baseline5Start']
    self.baseline5_start = attributes[:'Baseline5Start']
  end
  
  if attributes[:'Baseline5Finish']
    self.baseline5_finish = attributes[:'Baseline5Finish']
  end
  
  if attributes[:'Baseline5Work']
    self.baseline5_work = attributes[:'Baseline5Work']
  end
  
  if attributes[:'Baseline5Cost']
    self.baseline5_cost = attributes[:'Baseline5Cost']
  end
  
  if attributes[:'Baseline5Bcws']
    self.baseline5_bcws = attributes[:'Baseline5Bcws']
  end
  
  if attributes[:'Baseline5Bcwp']
    self.baseline5_bcwp = attributes[:'Baseline5Bcwp']
  end
  
  if attributes[:'Baseline6Start']
    self.baseline6_start = attributes[:'Baseline6Start']
  end
  
  if attributes[:'Baseline6Finish']
    self.baseline6_finish = attributes[:'Baseline6Finish']
  end
  
  if attributes[:'Baseline6Work']
    self.baseline6_work = attributes[:'Baseline6Work']
  end
  
  if attributes[:'Baseline6Cost']
    self.baseline6_cost = attributes[:'Baseline6Cost']
  end
  
  if attributes[:'Baseline6Bcws']
    self.baseline6_bcws = attributes[:'Baseline6Bcws']
  end
  
  if attributes[:'Baseline6Bcwp']
    self.baseline6_bcwp = attributes[:'Baseline6Bcwp']
  end
  
  if attributes[:'Baseline7Start']
    self.baseline7_start = attributes[:'Baseline7Start']
  end
  
  if attributes[:'Baseline7Finish']
    self.baseline7_finish = attributes[:'Baseline7Finish']
  end
  
  if attributes[:'Baseline7Work']
    self.baseline7_work = attributes[:'Baseline7Work']
  end
  
  if attributes[:'Baseline7Cost']
    self.baseline7_cost = attributes[:'Baseline7Cost']
  end
  
  if attributes[:'Baseline7Bcws']
    self.baseline7_bcws = attributes[:'Baseline7Bcws']
  end
  
  if attributes[:'Baseline7Bcwp']
    self.baseline7_bcwp = attributes[:'Baseline7Bcwp']
  end
  
  if attributes[:'Baseline8Start']
    self.baseline8_start = attributes[:'Baseline8Start']
  end
  
  if attributes[:'Baseline8Finish']
    self.baseline8_finish = attributes[:'Baseline8Finish']
  end
  
  if attributes[:'Baseline8Work']
    self.baseline8_work = attributes[:'Baseline8Work']
  end
  
  if attributes[:'Baseline8Cost']
    self.baseline8_cost = attributes[:'Baseline8Cost']
  end
  
  if attributes[:'Baseline8Bcws']
    self.baseline8_bcws = attributes[:'Baseline8Bcws']
  end
  
  if attributes[:'Baseline8Bcwp']
    self.baseline8_bcwp = attributes[:'Baseline8Bcwp']
  end
  
  if attributes[:'Baseline9Start']
    self.baseline9_start = attributes[:'Baseline9Start']
  end
  
  if attributes[:'Baseline9Finish']
    self.baseline9_finish = attributes[:'Baseline9Finish']
  end
  
  if attributes[:'Baseline9Work']
    self.baseline9_work = attributes[:'Baseline9Work']
  end
  
  if attributes[:'Baseline9Cost']
    self.baseline9_cost = attributes[:'Baseline9Cost']
  end
  
  if attributes[:'Baseline9Bcws']
    self.baseline9_bcws = attributes[:'Baseline9Bcws']
  end
  
  if attributes[:'Baseline9Bcwp']
    self.baseline9_bcwp = attributes[:'Baseline9Bcwp']
  end
  
  if attributes[:'Baseline10Start']
    self.baseline10_start = attributes[:'Baseline10Start']
  end
  
  if attributes[:'Baseline10Finish']
    self.baseline10_finish = attributes[:'Baseline10Finish']
  end
  
  if attributes[:'Baseline10Work']
    self.baseline10_work = attributes[:'Baseline10Work']
  end
  
  if attributes[:'Baseline10Cost']
    self.baseline10_cost = attributes[:'Baseline10Cost']
  end
  
  if attributes[:'Baseline10Bcws']
    self.baseline10_bcws = attributes[:'Baseline10Bcws']
  end
  
  if attributes[:'Baseline10Bcwp']
    self.baseline10_bcwp = attributes[:'Baseline10Bcwp']
  end
  
  if attributes[:'ExtendedAttributes']
    if (value = attributes[:'ExtendedAttributes']).is_a?(Array)
      self.extended_attributes = value
    end
  end
  
end

Instance Attribute Details

#actual_costObject

Returns the value of attribute actual_cost.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def actual_cost
  @actual_cost
end

#actual_finishObject

Returns the value of attribute actual_finish.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def actual_finish
  @actual_finish
end

#actual_overtime_costObject

Returns the value of attribute actual_overtime_cost.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def actual_overtime_cost
  @actual_overtime_cost
end

#actual_overtime_workObject

Returns the value of attribute actual_overtime_work.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def actual_overtime_work
  @actual_overtime_work
end

#actual_overtime_work_protectedObject

Returns the value of attribute actual_overtime_work_protected.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def actual_overtime_work_protected
  @actual_overtime_work_protected
end

#actual_startObject

Returns the value of attribute actual_start.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def actual_start
  @actual_start
end

#actual_workObject

Returns the value of attribute actual_work.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def actual_work
  @actual_work
end

#actual_work_protectedObject

Returns the value of attribute actual_work_protected.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def actual_work_protected
  @actual_work_protected
end

#acwpObject

Returns the value of attribute acwp.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def acwp
  @acwp
end

#assn_ownerObject

Returns the value of attribute assn_owner.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def assn_owner
  @assn_owner
end

#assn_owner_guidObject

Returns the value of attribute assn_owner_guid.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def assn_owner_guid
  @assn_owner_guid
end

#baseline10_bcwpObject

Returns the value of attribute baseline10_bcwp.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline10_bcwp
  @baseline10_bcwp
end

#baseline10_bcwsObject

Returns the value of attribute baseline10_bcws.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline10_bcws
  @baseline10_bcws
end

#baseline10_costObject

Returns the value of attribute baseline10_cost.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline10_cost
  @baseline10_cost
end

#baseline10_finishObject

Returns the value of attribute baseline10_finish.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline10_finish
  @baseline10_finish
end

#baseline10_startObject

Returns the value of attribute baseline10_start.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline10_start
  @baseline10_start
end

#baseline10_workObject

Returns the value of attribute baseline10_work.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline10_work
  @baseline10_work
end

#baseline1_bcwpObject

Returns the value of attribute baseline1_bcwp.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline1_bcwp
  @baseline1_bcwp
end

#baseline1_bcwsObject

Returns the value of attribute baseline1_bcws.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline1_bcws
  @baseline1_bcws
end

#baseline1_costObject

Returns the value of attribute baseline1_cost.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline1_cost
  @baseline1_cost
end

#baseline1_finishObject

Returns the value of attribute baseline1_finish.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline1_finish
  @baseline1_finish
end

#baseline1_startObject

Returns the value of attribute baseline1_start.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline1_start
  @baseline1_start
end

#baseline1_workObject

Returns the value of attribute baseline1_work.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline1_work
  @baseline1_work
end

#baseline2_bcwpObject

Returns the value of attribute baseline2_bcwp.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline2_bcwp
  @baseline2_bcwp
end

#baseline2_bcwsObject

Returns the value of attribute baseline2_bcws.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline2_bcws
  @baseline2_bcws
end

#baseline2_costObject

Returns the value of attribute baseline2_cost.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline2_cost
  @baseline2_cost
end

#baseline2_finishObject

Returns the value of attribute baseline2_finish.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline2_finish
  @baseline2_finish
end

#baseline2_startObject

Returns the value of attribute baseline2_start.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline2_start
  @baseline2_start
end

#baseline2_workObject

Returns the value of attribute baseline2_work.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline2_work
  @baseline2_work
end

#baseline3_bcwpObject

Returns the value of attribute baseline3_bcwp.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline3_bcwp
  @baseline3_bcwp
end

#baseline3_bcwsObject

Returns the value of attribute baseline3_bcws.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline3_bcws
  @baseline3_bcws
end

#baseline3_costObject

Returns the value of attribute baseline3_cost.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline3_cost
  @baseline3_cost
end

#baseline3_finishObject

Returns the value of attribute baseline3_finish.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline3_finish
  @baseline3_finish
end

#baseline3_startObject

Returns the value of attribute baseline3_start.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline3_start
  @baseline3_start
end

#baseline3_workObject

Returns the value of attribute baseline3_work.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline3_work
  @baseline3_work
end

#baseline4_bcwpObject

Returns the value of attribute baseline4_bcwp.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline4_bcwp
  @baseline4_bcwp
end

#baseline4_bcwsObject

Returns the value of attribute baseline4_bcws.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline4_bcws
  @baseline4_bcws
end

#baseline4_costObject

Returns the value of attribute baseline4_cost.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline4_cost
  @baseline4_cost
end

#baseline4_finishObject

Returns the value of attribute baseline4_finish.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline4_finish
  @baseline4_finish
end

#baseline4_startObject

Returns the value of attribute baseline4_start.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline4_start
  @baseline4_start
end

#baseline4_workObject

Returns the value of attribute baseline4_work.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline4_work
  @baseline4_work
end

#baseline5_bcwpObject

Returns the value of attribute baseline5_bcwp.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline5_bcwp
  @baseline5_bcwp
end

#baseline5_bcwsObject

Returns the value of attribute baseline5_bcws.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline5_bcws
  @baseline5_bcws
end

#baseline5_costObject

Returns the value of attribute baseline5_cost.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline5_cost
  @baseline5_cost
end

#baseline5_finishObject

Returns the value of attribute baseline5_finish.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline5_finish
  @baseline5_finish
end

#baseline5_startObject

Returns the value of attribute baseline5_start.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline5_start
  @baseline5_start
end

#baseline5_workObject

Returns the value of attribute baseline5_work.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline5_work
  @baseline5_work
end

#baseline6_bcwpObject

Returns the value of attribute baseline6_bcwp.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline6_bcwp
  @baseline6_bcwp
end

#baseline6_bcwsObject

Returns the value of attribute baseline6_bcws.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline6_bcws
  @baseline6_bcws
end

#baseline6_costObject

Returns the value of attribute baseline6_cost.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline6_cost
  @baseline6_cost
end

#baseline6_finishObject

Returns the value of attribute baseline6_finish.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline6_finish
  @baseline6_finish
end

#baseline6_startObject

Returns the value of attribute baseline6_start.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline6_start
  @baseline6_start
end

#baseline6_workObject

Returns the value of attribute baseline6_work.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline6_work
  @baseline6_work
end

#baseline7_bcwpObject

Returns the value of attribute baseline7_bcwp.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline7_bcwp
  @baseline7_bcwp
end

#baseline7_bcwsObject

Returns the value of attribute baseline7_bcws.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline7_bcws
  @baseline7_bcws
end

#baseline7_costObject

Returns the value of attribute baseline7_cost.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline7_cost
  @baseline7_cost
end

#baseline7_finishObject

Returns the value of attribute baseline7_finish.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline7_finish
  @baseline7_finish
end

#baseline7_startObject

Returns the value of attribute baseline7_start.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline7_start
  @baseline7_start
end

#baseline7_workObject

Returns the value of attribute baseline7_work.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline7_work
  @baseline7_work
end

#baseline8_bcwpObject

Returns the value of attribute baseline8_bcwp.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline8_bcwp
  @baseline8_bcwp
end

#baseline8_bcwsObject

Returns the value of attribute baseline8_bcws.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline8_bcws
  @baseline8_bcws
end

#baseline8_costObject

Returns the value of attribute baseline8_cost.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline8_cost
  @baseline8_cost
end

#baseline8_finishObject

Returns the value of attribute baseline8_finish.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline8_finish
  @baseline8_finish
end

#baseline8_startObject

Returns the value of attribute baseline8_start.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline8_start
  @baseline8_start
end

#baseline8_workObject

Returns the value of attribute baseline8_work.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline8_work
  @baseline8_work
end

#baseline9_bcwpObject

Returns the value of attribute baseline9_bcwp.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline9_bcwp
  @baseline9_bcwp
end

#baseline9_bcwsObject

Returns the value of attribute baseline9_bcws.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline9_bcws
  @baseline9_bcws
end

#baseline9_costObject

Returns the value of attribute baseline9_cost.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline9_cost
  @baseline9_cost
end

#baseline9_finishObject

Returns the value of attribute baseline9_finish.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline9_finish
  @baseline9_finish
end

#baseline9_startObject

Returns the value of attribute baseline9_start.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline9_start
  @baseline9_start
end

#baseline9_workObject

Returns the value of attribute baseline9_work.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline9_work
  @baseline9_work
end

#baseline_bcwpObject

Returns the value of attribute baseline_bcwp.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline_bcwp
  @baseline_bcwp
end

#baseline_bcwsObject

Returns the value of attribute baseline_bcws.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline_bcws
  @baseline_bcws
end

#baseline_costObject

Returns the value of attribute baseline_cost.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline_cost
  @baseline_cost
end

#baseline_finishObject

Returns the value of attribute baseline_finish.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline_finish
  @baseline_finish
end

#baseline_startObject

Returns the value of attribute baseline_start.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline_start
  @baseline_start
end

#baseline_workObject

Returns the value of attribute baseline_work.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def baseline_work
  @baseline_work
end

#bcwpObject

Returns the value of attribute bcwp.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def bcwp
  @bcwp
end

#bcwsObject

Returns the value of attribute bcws.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def bcws
  @bcws
end

#booking_typeObject

Returns the value of attribute booking_type.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def booking_type
  @booking_type
end

#budget_costObject

Returns the value of attribute budget_cost.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def budget_cost
  @budget_cost
end

#budget_workObject

Returns the value of attribute budget_work.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def budget_work
  @budget_work
end

#confirmedObject

Returns the value of attribute confirmed.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def confirmed
  @confirmed
end

#costObject

Returns the value of attribute cost.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def cost
  @cost
end

#cost_rate_table_typeObject

Returns the value of attribute cost_rate_table_type.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def cost_rate_table_type
  @cost_rate_table_type
end

#cost_varianceObject

Returns the value of attribute cost_variance.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def cost_variance
  @cost_variance
end

#creation_dateObject

Returns the value of attribute creation_date.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def creation_date
  @creation_date
end

#cvObject

Returns the value of attribute cv.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def cv
  @cv
end

#delayObject

Returns the value of attribute delay.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def delay
  @delay
end

#extended_attributesObject

Returns the value of attribute extended_attributes.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def extended_attributes
  @extended_attributes
end

#finishObject

Returns the value of attribute finish.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def finish
  @finish
end

#finish_varianceObject

Returns the value of attribute finish_variance.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def finish_variance
  @finish_variance
end

#fixed_materialObject

Returns the value of attribute fixed_material.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def fixed_material
  @fixed_material
end

#has_fixed_rate_unitsObject

Returns the value of attribute has_fixed_rate_units.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def has_fixed_rate_units
  @has_fixed_rate_units
end

Returns the value of attribute hyperlink.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def hyperlink
  @hyperlink
end

Returns the value of attribute hyperlink_address.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def hyperlink_address
  @hyperlink_address
end

Returns the value of attribute hyperlink_sub_address.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def hyperlink_sub_address
  @hyperlink_sub_address
end

#leveling_delayObject

Returns the value of attribute leveling_delay.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def leveling_delay
  @leveling_delay
end

#leveling_delay_formatObject

Returns the value of attribute leveling_delay_format.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def leveling_delay_format
  @leveling_delay_format
end

#linked_fieldsObject

Returns the value of attribute linked_fields.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def linked_fields
  @linked_fields
end

#milestoneObject

Returns the value of attribute milestone.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def milestone
  @milestone
end

#notesObject

Returns the value of attribute notes.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def notes
  @notes
end

#overallocatedObject

Returns the value of attribute overallocated.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def overallocated
  @overallocated
end

#overtime_costObject

Returns the value of attribute overtime_cost.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def overtime_cost
  @overtime_cost
end

#overtime_workObject

Returns the value of attribute overtime_work.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def overtime_work
  @overtime_work
end

#peak_unitsObject

Returns the value of attribute peak_units.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def peak_units
  @peak_units
end

#percent_work_completeObject

Returns the value of attribute percent_work_complete.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def percent_work_complete
  @percent_work_complete
end

#rate_scaleObject

Returns the value of attribute rate_scale.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def rate_scale
  @rate_scale
end

#regular_workObject

Returns the value of attribute regular_work.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def regular_work
  @regular_work
end

#remaining_costObject

Returns the value of attribute remaining_cost.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def remaining_cost
  @remaining_cost
end

#remaining_overtime_costObject

Returns the value of attribute remaining_overtime_cost.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def remaining_overtime_cost
  @remaining_overtime_cost
end

#remaining_overtime_workObject

Returns the value of attribute remaining_overtime_work.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def remaining_overtime_work
  @remaining_overtime_work
end

#remaining_workObject

Returns the value of attribute remaining_work.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def remaining_work
  @remaining_work
end

#resource_uidObject

Returns the value of attribute resource_uid.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def resource_uid
  @resource_uid
end

#response_pendingObject

Returns the value of attribute response_pending.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def response_pending
  @response_pending
end

#resumeObject

Returns the value of attribute resume.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def resume
  @resume
end

#startObject

Returns the value of attribute start.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def start
  @start
end

#start_varianceObject

Returns the value of attribute start_variance.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def start_variance
  @start_variance
end

#stopObject

Returns the value of attribute stop.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def stop
  @stop
end

#summaryObject

Returns the value of attribute summary.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def summary
  @summary
end

#svObject

Returns the value of attribute sv.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def sv
  @sv
end

#task_uidObject

Returns the value of attribute task_uid.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def task_uid
  @task_uid
end

#uidObject

Returns the value of attribute uid.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def uid
  @uid
end

#unitsObject

Returns the value of attribute units.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def units
  @units
end

#update_neededObject

Returns the value of attribute update_needed.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def update_needed
  @update_needed
end

#vacObject

Returns the value of attribute vac.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def vac
  @vac
end

#workObject

Returns the value of attribute work.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def work
  @work
end

#work_contourObject

Returns the value of attribute work_contour.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def work_contour
  @work_contour
end

#work_varianceObject

Returns the value of attribute work_variance.



4
5
6
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 4

def work_variance
  @work_variance
end

Class Method Details

.attribute_mapObject

attribute mapping from ruby-style variable name to JSON key



6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 6

def self.attribute_map
  {
    
    # 
    :'task_uid' => :'TaskUid',
    
    # 
    :'resource_uid' => :'ResourceUid',
    
    # 
    :'uid' => :'Uid',
    
    # 
    :'percent_work_complete' => :'PercentWorkComplete',
    
    # 
    :'actual_cost' => :'ActualCost',
    
    # 
    :'actual_finish' => :'ActualFinish',
    
    # 
    :'actual_overtime_cost' => :'ActualOvertimeCost',
    
    # 
    :'actual_overtime_work' => :'ActualOvertimeWork',
    
    # 
    :'actual_start' => :'ActualStart',
    
    # 
    :'actual_work' => :'ActualWork',
    
    # 
    :'acwp' => :'Acwp',
    
    # 
    :'confirmed' => :'Confirmed',
    
    # 
    :'cost' => :'Cost',
    
    # 
    :'cost_rate_table_type' => :'CostRateTableType',
    
    # 
    :'cost_variance' => :'CostVariance',
    
    # 
    :'cv' => :'Cv',
    
    # 
    :'delay' => :'Delay',
    
    # 
    :'finish' => :'Finish',
    
    # 
    :'finish_variance' => :'FinishVariance',
    
    # 
    :'hyperlink' => :'Hyperlink',
    
    # 
    :'hyperlink_address' => :'HyperlinkAddress',
    
    # 
    :'hyperlink_sub_address' => :'HyperlinkSubAddress',
    
    # 
    :'work_variance' => :'WorkVariance',
    
    # 
    :'has_fixed_rate_units' => :'HasFixedRateUnits',
    
    # 
    :'fixed_material' => :'FixedMaterial',
    
    # 
    :'leveling_delay' => :'LevelingDelay',
    
    # 
    :'leveling_delay_format' => :'LevelingDelayFormat',
    
    # 
    :'linked_fields' => :'LinkedFields',
    
    # 
    :'milestone' => :'Milestone',
    
    # 
    :'notes' => :'Notes',
    
    # 
    :'overallocated' => :'Overallocated',
    
    # 
    :'overtime_cost' => :'OvertimeCost',
    
    # 
    :'overtime_work' => :'OvertimeWork',
    
    # 
    :'peak_units' => :'PeakUnits',
    
    # 
    :'regular_work' => :'RegularWork',
    
    # 
    :'remaining_cost' => :'RemainingCost',
    
    # 
    :'remaining_overtime_cost' => :'RemainingOvertimeCost',
    
    # 
    :'remaining_overtime_work' => :'RemainingOvertimeWork',
    
    # 
    :'remaining_work' => :'RemainingWork',
    
    # 
    :'response_pending' => :'ResponsePending',
    
    # 
    :'start' => :'Start',
    
    # 
    :'stop' => :'Stop',
    
    # 
    :'resume' => :'Resume',
    
    # 
    :'start_variance' => :'StartVariance',
    
    # 
    :'summary' => :'Summary',
    
    # 
    :'sv' => :'Sv',
    
    # 
    :'units' => :'Units',
    
    # 
    :'update_needed' => :'UpdateNeeded',
    
    # 
    :'vac' => :'Vac',
    
    # 
    :'work' => :'Work',
    
    # 
    :'work_contour' => :'WorkContour',
    
    # 
    :'bcws' => :'Bcws',
    
    # 
    :'bcwp' => :'Bcwp',
    
    # 
    :'booking_type' => :'BookingType',
    
    # 
    :'actual_work_protected' => :'ActualWorkProtected',
    
    # 
    :'actual_overtime_work_protected' => :'ActualOvertimeWorkProtected',
    
    # 
    :'creation_date' => :'CreationDate',
    
    # 
    :'assn_owner' => :'AssnOwner',
    
    # 
    :'assn_owner_guid' => :'AssnOwnerGuid',
    
    # 
    :'budget_cost' => :'BudgetCost',
    
    # 
    :'budget_work' => :'BudgetWork',
    
    # 
    :'rate_scale' => :'RateScale',
    
    # 
    :'baseline_start' => :'BaselineStart',
    
    # 
    :'baseline_finish' => :'BaselineFinish',
    
    # 
    :'baseline_work' => :'BaselineWork',
    
    # 
    :'baseline_cost' => :'BaselineCost',
    
    # 
    :'baseline_bcws' => :'BaselineBcws',
    
    # 
    :'baseline_bcwp' => :'BaselineBcwp',
    
    # 
    :'baseline1_start' => :'Baseline1Start',
    
    # 
    :'baseline1_finish' => :'Baseline1Finish',
    
    # 
    :'baseline1_work' => :'Baseline1Work',
    
    # 
    :'baseline1_cost' => :'Baseline1Cost',
    
    # 
    :'baseline1_bcws' => :'Baseline1Bcws',
    
    # 
    :'baseline1_bcwp' => :'Baseline1Bcwp',
    
    # 
    :'baseline2_start' => :'Baseline2Start',
    
    # 
    :'baseline2_finish' => :'Baseline2Finish',
    
    # 
    :'baseline2_work' => :'Baseline2Work',
    
    # 
    :'baseline2_cost' => :'Baseline2Cost',
    
    # 
    :'baseline2_bcws' => :'Baseline2Bcws',
    
    # 
    :'baseline2_bcwp' => :'Baseline2Bcwp',
    
    # 
    :'baseline3_start' => :'Baseline3Start',
    
    # 
    :'baseline3_finish' => :'Baseline3Finish',
    
    # 
    :'baseline3_work' => :'Baseline3Work',
    
    # 
    :'baseline3_cost' => :'Baseline3Cost',
    
    # 
    :'baseline3_bcws' => :'Baseline3Bcws',
    
    # 
    :'baseline3_bcwp' => :'Baseline3Bcwp',
    
    # 
    :'baseline4_start' => :'Baseline4Start',
    
    # 
    :'baseline4_finish' => :'Baseline4Finish',
    
    # 
    :'baseline4_work' => :'Baseline4Work',
    
    # 
    :'baseline4_cost' => :'Baseline4Cost',
    
    # 
    :'baseline4_bcws' => :'Baseline4Bcws',
    
    # 
    :'baseline4_bcwp' => :'Baseline4Bcwp',
    
    # 
    :'baseline5_start' => :'Baseline5Start',
    
    # 
    :'baseline5_finish' => :'Baseline5Finish',
    
    # 
    :'baseline5_work' => :'Baseline5Work',
    
    # 
    :'baseline5_cost' => :'Baseline5Cost',
    
    # 
    :'baseline5_bcws' => :'Baseline5Bcws',
    
    # 
    :'baseline5_bcwp' => :'Baseline5Bcwp',
    
    # 
    :'baseline6_start' => :'Baseline6Start',
    
    # 
    :'baseline6_finish' => :'Baseline6Finish',
    
    # 
    :'baseline6_work' => :'Baseline6Work',
    
    # 
    :'baseline6_cost' => :'Baseline6Cost',
    
    # 
    :'baseline6_bcws' => :'Baseline6Bcws',
    
    # 
    :'baseline6_bcwp' => :'Baseline6Bcwp',
    
    # 
    :'baseline7_start' => :'Baseline7Start',
    
    # 
    :'baseline7_finish' => :'Baseline7Finish',
    
    # 
    :'baseline7_work' => :'Baseline7Work',
    
    # 
    :'baseline7_cost' => :'Baseline7Cost',
    
    # 
    :'baseline7_bcws' => :'Baseline7Bcws',
    
    # 
    :'baseline7_bcwp' => :'Baseline7Bcwp',
    
    # 
    :'baseline8_start' => :'Baseline8Start',
    
    # 
    :'baseline8_finish' => :'Baseline8Finish',
    
    # 
    :'baseline8_work' => :'Baseline8Work',
    
    # 
    :'baseline8_cost' => :'Baseline8Cost',
    
    # 
    :'baseline8_bcws' => :'Baseline8Bcws',
    
    # 
    :'baseline8_bcwp' => :'Baseline8Bcwp',
    
    # 
    :'baseline9_start' => :'Baseline9Start',
    
    # 
    :'baseline9_finish' => :'Baseline9Finish',
    
    # 
    :'baseline9_work' => :'Baseline9Work',
    
    # 
    :'baseline9_cost' => :'Baseline9Cost',
    
    # 
    :'baseline9_bcws' => :'Baseline9Bcws',
    
    # 
    :'baseline9_bcwp' => :'Baseline9Bcwp',
    
    # 
    :'baseline10_start' => :'Baseline10Start',
    
    # 
    :'baseline10_finish' => :'Baseline10Finish',
    
    # 
    :'baseline10_work' => :'Baseline10Work',
    
    # 
    :'baseline10_cost' => :'Baseline10Cost',
    
    # 
    :'baseline10_bcws' => :'Baseline10Bcws',
    
    # 
    :'baseline10_bcwp' => :'Baseline10Bcwp',
    
    # 
    :'extended_attributes' => :'ExtendedAttributes'
    
  }
end

.swagger_typesObject

attribute type



400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
# File 'lib/aspose_tasks_cloud/models/resource_assignment.rb', line 400

def self.swagger_types
  {
    :'task_uid' => :'Integer',
    :'resource_uid' => :'Integer',
    :'uid' => :'Integer',
    :'percent_work_complete' => :'Integer',
    :'actual_cost' => :'Float',
    :'actual_finish' => :'String',
    :'actual_overtime_cost' => :'Float',
    :'actual_overtime_work' => :'String',
    :'actual_start' => :'String',
    :'actual_work' => :'String',
    :'acwp' => :'Float',
    :'confirmed' => :'BOOLEAN',
    :'cost' => :'Float',
    :'cost_rate_table_type' => :'String',
    :'cost_variance' => :'Float',
    :'cv' => :'Float',
    :'delay' => :'Integer',
    :'finish' => :'String',
    :'finish_variance' => :'Integer',
    :'hyperlink' => :'String',
    :'hyperlink_address' => :'String',
    :'hyperlink_sub_address' => :'String',
    :'work_variance' => :'Float',
    :'has_fixed_rate_units' => :'BOOLEAN',
    :'fixed_material' => :'BOOLEAN',
    :'leveling_delay' => :'Integer',
    :'leveling_delay_format' => :'String',
    :'linked_fields' => :'BOOLEAN',
    :'milestone' => :'BOOLEAN',
    :'notes' => :'String',
    :'overallocated' => :'BOOLEAN',
    :'overtime_cost' => :'Float',
    :'overtime_work' => :'String',
    :'peak_units' => :'Float',
    :'regular_work' => :'String',
    :'remaining_cost' => :'Float',
    :'remaining_overtime_cost' => :'Float',
    :'remaining_overtime_work' => :'String',
    :'remaining_work' => :'String',
    :'response_pending' => :'BOOLEAN',
    :'start' => :'String',
    :'stop' => :'String',
    :'resume' => :'String',
    :'start_variance' => :'Integer',
    :'summary' => :'BOOLEAN',
    :'sv' => :'Float',
    :'units' => :'Float',
    :'update_needed' => :'BOOLEAN',
    :'vac' => :'Float',
    :'work' => :'String',
    :'work_contour' => :'String',
    :'bcws' => :'Float',
    :'bcwp' => :'Float',
    :'booking_type' => :'String',
    :'actual_work_protected' => :'String',
    :'actual_overtime_work_protected' => :'String',
    :'creation_date' => :'String',
    :'assn_owner' => :'String',
    :'assn_owner_guid' => :'String',
    :'budget_cost' => :'Float',
    :'budget_work' => :'String',
    :'rate_scale' => :'Integer',
    :'baseline_start' => :'String',
    :'baseline_finish' => :'String',
    :'baseline_work' => :'String',
    :'baseline_cost' => :'Float',
    :'baseline_bcws' => :'Float',
    :'baseline_bcwp' => :'Float',
    :'baseline1_start' => :'String',
    :'baseline1_finish' => :'String',
    :'baseline1_work' => :'String',
    :'baseline1_cost' => :'Float',
    :'baseline1_bcws' => :'Float',
    :'baseline1_bcwp' => :'Float',
    :'baseline2_start' => :'String',
    :'baseline2_finish' => :'String',
    :'baseline2_work' => :'String',
    :'baseline2_cost' => :'Float',
    :'baseline2_bcws' => :'Float',
    :'baseline2_bcwp' => :'Float',
    :'baseline3_start' => :'String',
    :'baseline3_finish' => :'String',
    :'baseline3_work' => :'String',
    :'baseline3_cost' => :'Float',
    :'baseline3_bcws' => :'Float',
    :'baseline3_bcwp' => :'Float',
    :'baseline4_start' => :'String',
    :'baseline4_finish' => :'String',
    :'baseline4_work' => :'String',
    :'baseline4_cost' => :'Float',
    :'baseline4_bcws' => :'Float',
    :'baseline4_bcwp' => :'Float',
    :'baseline5_start' => :'String',
    :'baseline5_finish' => :'String',
    :'baseline5_work' => :'String',
    :'baseline5_cost' => :'Float',
    :'baseline5_bcws' => :'Float',
    :'baseline5_bcwp' => :'Float',
    :'baseline6_start' => :'String',
    :'baseline6_finish' => :'String',
    :'baseline6_work' => :'String',
    :'baseline6_cost' => :'Float',
    :'baseline6_bcws' => :'Float',
    :'baseline6_bcwp' => :'Float',
    :'baseline7_start' => :'String',
    :'baseline7_finish' => :'String',
    :'baseline7_work' => :'String',
    :'baseline7_cost' => :'Float',
    :'baseline7_bcws' => :'Float',
    :'baseline7_bcwp' => :'Float',
    :'baseline8_start' => :'String',
    :'baseline8_finish' => :'String',
    :'baseline8_work' => :'String',
    :'baseline8_cost' => :'Float',
    :'baseline8_bcws' => :'Float',
    :'baseline8_bcwp' => :'Float',
    :'baseline9_start' => :'String',
    :'baseline9_finish' => :'String',
    :'baseline9_work' => :'String',
    :'baseline9_cost' => :'Float',
    :'baseline9_bcws' => :'Float',
    :'baseline9_bcwp' => :'Float',
    :'baseline10_start' => :'String',
    :'baseline10_finish' => :'String',
    :'baseline10_work' => :'String',
    :'baseline10_cost' => :'Float',
    :'baseline10_bcws' => :'Float',
    :'baseline10_bcwp' => :'Float',
    :'extended_attributes' => :'Array<ExtendedAttribute>'
    
  }
end