Class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoNextTask
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoNextTask
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/integrations_v1alpha/classes.rb,
lib/google/apis/integrations_v1alpha/representations.rb,
lib/google/apis/integrations_v1alpha/representations.rb
Overview
The task that is next in line to be executed, if the condition specified evaluated to true.
Instance Attribute Summary collapse
-
#combined_conditions ⇒ Array<Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoCombinedCondition>
Combined condition for this task to become an eligible next task.
-
#condition ⇒ String
Standard filter expression for this task to become an eligible next task.
-
#description ⇒ String
User-provided description intended to give more business context about the next task edge or condition.
-
#label ⇒ String
User-provided label that is attached to this edge in the UI.
-
#task_config_id ⇒ String
ID of the next task.
-
#task_number ⇒ String
Task number of the next task.
Instance Method Summary collapse
-
#initialize(**args) ⇒ EnterpriseCrmEventbusProtoNextTask
constructor
A new instance of EnterpriseCrmEventbusProtoNextTask.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ EnterpriseCrmEventbusProtoNextTask
Returns a new instance of EnterpriseCrmEventbusProtoNextTask.
1601 1602 1603 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 1601 def initialize(**args) update!(**args) end |
Instance Attribute Details
#combined_conditions ⇒ Array<Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoCombinedCondition>
Combined condition for this task to become an eligible next task. Each of
these combined_conditions are joined with logical OR. DEPRECATED: use
condition
Corresponds to the JSON property combinedConditions
1573 1574 1575 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 1573 def combined_conditions @combined_conditions end |
#condition ⇒ String
Standard filter expression for this task to become an eligible next task.
Corresponds to the JSON property condition
1578 1579 1580 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 1578 def condition @condition end |
#description ⇒ String
User-provided description intended to give more business context about the
next task edge or condition.
Corresponds to the JSON property description
1584 1585 1586 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 1584 def description @description end |
#label ⇒ String
User-provided label that is attached to this edge in the UI.
Corresponds to the JSON property label
1589 1590 1591 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 1589 def label @label end |
#task_config_id ⇒ String
ID of the next task.
Corresponds to the JSON property taskConfigId
1594 1595 1596 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 1594 def task_config_id @task_config_id end |
#task_number ⇒ String
Task number of the next task.
Corresponds to the JSON property taskNumber
1599 1600 1601 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 1599 def task_number @task_number end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1606 1607 1608 1609 1610 1611 1612 1613 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 1606 def update!(**args) @combined_conditions = args[:combined_conditions] if args.key?(:combined_conditions) @condition = args[:condition] if args.key?(:condition) @description = args[:description] if args.key?(:description) @label = args[:label] if args.key?(:label) @task_config_id = args[:task_config_id] if args.key?(:task_config_id) @task_number = args[:task_number] if args.key?(:task_number) end |