Class: Google::Apis::IntegrationsV1::EnterpriseCrmFrontendsEventbusProtoEventExecutionInfoReplayInfo

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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_idString

If this execution is a replay of another execution, then this field contains the original execution id. Corresponds to the JSON property originalExecutionInfoId

Returns:

  • (String)


3908
3909
3910
# File 'lib/google/apis/integrations_v1/classes.rb', line 3908

def original_execution_info_id
  @original_execution_info_id
end

#replay_modeString

Replay mode for the execution Corresponds to the JSON property replayMode

Returns:

  • (String)


3913
3914
3915
# File 'lib/google/apis/integrations_v1/classes.rb', line 3913

def replay_mode
  @replay_mode
end

#replay_reasonString

reason for replay Corresponds to the JSON property replayReason

Returns:

  • (String)


3918
3919
3920
# File 'lib/google/apis/integrations_v1/classes.rb', line 3918

def replay_reason
  @replay_reason
end

#replayed_execution_info_idsArray<String>

If this execution has been replayed, then this field contains the execution ids of the replayed executions. Corresponds to the JSON property replayedExecutionInfoIds

Returns:

  • (Array<String>)


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