Class: Google::Apis::IntegrationsV1::EnterpriseCrmFrontendsEventbusProtoEventExecutionInfoReplayInfo
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1::EnterpriseCrmFrontendsEventbusProtoEventExecutionInfoReplayInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/integrations_v1/classes.rb,
lib/google/apis/integrations_v1/representations.rb,
lib/google/apis/integrations_v1/representations.rb
Overview
Contains the details of the execution info: this includes the replay reason and replay tree connecting executions in a parent-child relationship
Instance Attribute Summary collapse
-
#original_execution_info_id ⇒ String
If this execution is a replay of another execution, then this field contains the original execution id.
-
#replay_mode ⇒ String
Replay mode for the execution Corresponds to the JSON property
replayMode
. -
#replay_reason ⇒ String
reason for replay Corresponds to the JSON property
replayReason
. -
#replayed_execution_info_ids ⇒ Array<String>
If this execution has been replayed, then this field contains the execution ids of the replayed executions.
Instance Method Summary collapse
-
#initialize(**args) ⇒ EnterpriseCrmFrontendsEventbusProtoEventExecutionInfoReplayInfo
constructor
A new instance of EnterpriseCrmFrontendsEventbusProtoEventExecutionInfoReplayInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ EnterpriseCrmFrontendsEventbusProtoEventExecutionInfoReplayInfo
Returns a new instance of EnterpriseCrmFrontendsEventbusProtoEventExecutionInfoReplayInfo.
3926 3927 3928 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 3926 def initialize(**args) update!(**args) end |
Instance Attribute Details
#original_execution_info_id ⇒ String
If this execution is a replay of another execution, then this field contains
the original execution id.
Corresponds to the JSON property originalExecutionInfoId
3908 3909 3910 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 3908 def original_execution_info_id @original_execution_info_id end |
#replay_mode ⇒ String
Replay mode for the execution
Corresponds to the JSON property replayMode
3913 3914 3915 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 3913 def replay_mode @replay_mode end |
#replay_reason ⇒ String
reason for replay
Corresponds to the JSON property replayReason
3918 3919 3920 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 3918 def replay_reason @replay_reason end |
#replayed_execution_info_ids ⇒ Array<String>
If this execution has been replayed, then this field contains the execution
ids of the replayed executions.
Corresponds to the JSON property replayedExecutionInfoIds
3924 3925 3926 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 3924 def replayed_execution_info_ids @replayed_execution_info_ids end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3931 3932 3933 3934 3935 3936 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 3931 def update!(**args) @original_execution_info_id = args[:original_execution_info_id] if args.key?(:original_execution_info_id) @replay_mode = args[:replay_mode] if args.key?(:replay_mode) @replay_reason = args[:replay_reason] if args.key?(:replay_reason) @replayed_execution_info_ids = args[:replayed_execution_info_ids] if args.key?(:replayed_execution_info_ids) end |