Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1EvaluationStatus

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dialogflow_v2beta1/classes.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1EvaluationStatus

Returns a new instance of GoogleCloudDialogflowV2beta1EvaluationStatus.



13218
13219
13220
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 13218

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

Instance Attribute Details

#doneBoolean Also known as: done?

Corresponds to the JSON property done

Returns:

  • (Boolean)


13210
13211
13212
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 13210

def done
  @done
end

#pipeline_statusGoogle::Apis::DialogflowV2beta1::GoogleRpcStatus

Corresponds to the JSON property pipelineStatus



13216
13217
13218
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 13216

def pipeline_status
  @pipeline_status
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



13223
13224
13225
13226
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 13223

def update!(**args)
  @done = args[:done] if args.key?(:done)
  @pipeline_status = args[:pipeline_status] if args.key?(:pipeline_status)
end