Class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoConditionResult

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ EnterpriseCrmEventbusProtoConditionResult

Returns a new instance of EnterpriseCrmEventbusProtoConditionResult.



508
509
510
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 508

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#current_task_numberString

the current task number. Corresponds to the JSON property currentTaskNumber

Returns:

  • (String)


494
495
496
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 494

def current_task_number
  @current_task_number
end

#next_task_numberString

the next task number. Corresponds to the JSON property nextTaskNumber

Returns:

  • (String)


499
500
501
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 499

def next_task_number
  @next_task_number
end

#resultBoolean 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

Returns:

  • (Boolean)


505
506
507
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 505

def result
  @result
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



513
514
515
516
517
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 513

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