Class: MicrosoftGraph::Models::ChangeTrackedEntity
- Includes:
- MicrosoftKiotaAbstractions::Parsable
- Defined in:
- lib/models/change_tracked_entity.rb
Direct Known Subclasses
OpenShift, ScheduleChangeRequest, SchedulingGroup, Shift, ShiftPreferences, TimeOff, TimeOffReason, WorkforceIntegration
Class Method Summary collapse
-
.create_from_discriminator_value(parse_node) ⇒ Object
Creates a new instance of the appropriate class based on discriminator value.
Instance Method Summary collapse
-
#created_date_time ⇒ Object
Gets the createdDateTime property value.
-
#created_date_time=(value) ⇒ Object
Sets the createdDateTime property value.
-
#get_field_deserializers ⇒ Object
The deserialization information for the current model.
-
#initialize ⇒ Object
constructor
Instantiates a new changeTrackedEntity and sets the default values.
-
#last_modified_by ⇒ Object
Gets the lastModifiedBy property value.
-
#last_modified_by=(value) ⇒ Object
Sets the lastModifiedBy property value.
-
#last_modified_date_time ⇒ Object
Gets the lastModifiedDateTime property value.
-
#last_modified_date_time=(value) ⇒ Object
Sets the lastModifiedDateTime property value.
-
#serialize(writer) ⇒ Object
Serializes information the current object.
Methods inherited from Entity
#additional_data, #additional_data=, #id, #id=, #odata_type, #odata_type=
Constructor Details
#initialize ⇒ Object
Instantiates a new changeTrackedEntity and sets the default values.
23 24 25 |
# File 'lib/models/change_tracked_entity.rb', line 23 def initialize() super end |
Class Method Details
.create_from_discriminator_value(parse_node) ⇒ Object
Creates a new instance of the appropriate class based on discriminator value
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 |
# File 'lib/models/change_tracked_entity.rb', line 46 def self.create_from_discriminator_value(parse_node) raise StandardError, 'parse_node cannot be null' if parse_node.nil? mapping_value_node = parse_node.get_child_node("@odata.type") unless mapping_value_node.nil? then mapping_value = mapping_value_node.get_string_value case mapping_value when "#microsoft.graph.offerShiftRequest" return OfferShiftRequest.new when "#microsoft.graph.openShift" return OpenShift.new when "#microsoft.graph.openShiftChangeRequest" return OpenShiftChangeRequest.new when "#microsoft.graph.scheduleChangeRequest" return ScheduleChangeRequest.new when "#microsoft.graph.schedulingGroup" return SchedulingGroup.new when "#microsoft.graph.shift" return Shift.new when "#microsoft.graph.shiftPreferences" return ShiftPreferences.new when "#microsoft.graph.swapShiftsChangeRequest" return SwapShiftsChangeRequest.new when "#microsoft.graph.timeOff" return TimeOff.new when "#microsoft.graph.timeOffReason" return TimeOffReason.new when "#microsoft.graph.timeOffRequest" return TimeOffRequest.new when "#microsoft.graph.workforceIntegration" return WorkforceIntegration.new end end return ChangeTrackedEntity.new end |
Instance Method Details
#created_date_time ⇒ Object
Gets the createdDateTime property value. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
30 31 32 |
# File 'lib/models/change_tracked_entity.rb', line 30 def created_date_time return @created_date_time end |
#created_date_time=(value) ⇒ Object
Sets the createdDateTime property value. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
38 39 40 |
# File 'lib/models/change_tracked_entity.rb', line 38 def created_date_time=(value) @created_date_time = value end |
#get_field_deserializers ⇒ Object
The deserialization information for the current model
84 85 86 87 88 89 90 |
# File 'lib/models/change_tracked_entity.rb', line 84 def get_field_deserializers() return super.merge({ "createdDateTime" => lambda {|n| @created_date_time = n.get_date_time_value() }, "lastModifiedBy" => lambda {|n| @last_modified_by = n.get_object_value(lambda {|pn| MicrosoftGraph::Models::IdentitySet.create_from_discriminator_value(pn) }) }, "lastModifiedDateTime" => lambda {|n| @last_modified_date_time = n.get_date_time_value() }, }) end |
#last_modified_by ⇒ Object
Gets the lastModifiedBy property value. Identity of the person who last modified the entity.
95 96 97 |
# File 'lib/models/change_tracked_entity.rb', line 95 def last_modified_by return @last_modified_by end |
#last_modified_by=(value) ⇒ Object
Sets the lastModifiedBy property value. Identity of the person who last modified the entity.
103 104 105 |
# File 'lib/models/change_tracked_entity.rb', line 103 def last_modified_by=(value) @last_modified_by = value end |
#last_modified_date_time ⇒ Object
Gets the lastModifiedDateTime property value. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
110 111 112 |
# File 'lib/models/change_tracked_entity.rb', line 110 def last_modified_date_time return @last_modified_date_time end |
#last_modified_date_time=(value) ⇒ Object
Sets the lastModifiedDateTime property value. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
118 119 120 |
# File 'lib/models/change_tracked_entity.rb', line 118 def last_modified_date_time=(value) @last_modified_date_time = value end |
#serialize(writer) ⇒ Object
Serializes information the current object
126 127 128 129 |
# File 'lib/models/change_tracked_entity.rb', line 126 def serialize(writer) raise StandardError, 'writer cannot be null' if writer.nil? super end |