Class: Google::Apis::IntegrationsV1::EnterpriseCrmEventbusProtoConditionResult
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1::EnterpriseCrmEventbusProtoConditionResult
- 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 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.
610 611 612 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 610 def initialize(**args) update!(**args) end |
Instance Attribute Details
#current_task_number ⇒ String
the current task number.
Corresponds to the JSON property currentTaskNumber
596 597 598 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 596 def current_task_number @current_task_number end |
#next_task_number ⇒ String
the next task number.
Corresponds to the JSON property nextTaskNumber
601 602 603 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 601 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
607 608 609 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 607 def result @result end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
615 616 617 618 619 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 615 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 |