Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ProbeDetails
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ProbeDetails
- 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
-
#init_time ⇒ String
Corresponds to the JSON property
initTime. -
#options_latency ⇒ String
Corresponds to the JSON property
optionsLatency. -
#probe_status ⇒ String
Corresponds to the JSON property
probeStatus.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1ProbeDetails
constructor
A new instance of GoogleCloudDialogflowV2beta1ProbeDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1ProbeDetails
Returns a new instance of GoogleCloudDialogflowV2beta1ProbeDetails.
18762 18763 18764 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 18762 def initialize(**args) update!(**args) end |
Instance Attribute Details
#init_time ⇒ String
Corresponds to the JSON property initTime
18750 18751 18752 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 18750 def init_time @init_time end |
#options_latency ⇒ String
Corresponds to the JSON property optionsLatency
18755 18756 18757 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 18755 def @options_latency end |
#probe_status ⇒ String
Corresponds to the JSON property probeStatus
18760 18761 18762 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 18760 def probe_status @probe_status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
18767 18768 18769 18770 18771 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 18767 def update!(**args) @init_time = args[:init_time] if args.key?(:init_time) @options_latency = args[:options_latency] if args.key?(:options_latency) @probe_status = args[:probe_status] if args.key?(:probe_status) end |