Class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoConditionResult
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoConditionResult
- 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
Contains the combined condition calculation results.
Instance Attribute Summary collapse
-
#current_task_number ⇒ String
the current task number.
-
#next_task_number ⇒ String
the next task number.
-
#result ⇒ Boolean
(also: #result?)
the result comes out after evaluate the combined condition.
Instance Method Summary collapse
-
#initialize(**args) ⇒ EnterpriseCrmEventbusProtoConditionResult
constructor
A new instance of EnterpriseCrmEventbusProtoConditionResult.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ EnterpriseCrmEventbusProtoConditionResult
Returns a new instance of EnterpriseCrmEventbusProtoConditionResult.
648 649 650 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 648 def initialize(**args) update!(**args) end |
Instance Attribute Details
#current_task_number ⇒ String
the current task number.
Corresponds to the JSON property currentTaskNumber
634 635 636 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 634 def current_task_number @current_task_number end |
#next_task_number ⇒ String
the next task number.
Corresponds to the JSON property nextTaskNumber
639 640 641 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 639 def next_task_number @next_task_number end |
#result ⇒ Boolean Also known as: result?
the result comes out after evaluate the combined condition. True if there's no
combined condition specified.
Corresponds to the JSON property result
645 646 647 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 645 def result @result end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
653 654 655 656 657 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 653 def update!(**args) @current_task_number = args[:current_task_number] if args.key?(:current_task_number) @next_task_number = args[:next_task_number] if args.key?(:next_task_number) @result = args[:result] if args.key?(:result) end |