Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2ServiceLatencyInternalServiceLatency
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2ServiceLatencyInternalServiceLatency
- 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
-
#complete_time ⇒ String
Corresponds to the JSON property
completeTime. -
#latency_ms ⇒ Float
Corresponds to the JSON property
latencyMs. -
#start_time ⇒ String
Corresponds to the JSON property
startTime. -
#step ⇒ String
Corresponds to the JSON property
step.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2ServiceLatencyInternalServiceLatency
constructor
A new instance of GoogleCloudDialogflowV2ServiceLatencyInternalServiceLatency.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2ServiceLatencyInternalServiceLatency
Returns a new instance of GoogleCloudDialogflowV2ServiceLatencyInternalServiceLatency.
9986 9987 9988 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 9986 def initialize(**args) update!(**args) end |
Instance Attribute Details
#complete_time ⇒ String
Corresponds to the JSON property completeTime
9969 9970 9971 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 9969 def complete_time @complete_time end |
#latency_ms ⇒ Float
Corresponds to the JSON property latencyMs
9974 9975 9976 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 9974 def latency_ms @latency_ms end |
#start_time ⇒ String
Corresponds to the JSON property startTime
9979 9980 9981 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 9979 def start_time @start_time end |
#step ⇒ String
Corresponds to the JSON property step
9984 9985 9986 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 9984 def step @step end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9991 9992 9993 9994 9995 9996 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 9991 def update!(**args) @complete_time = args[:complete_time] if args.key?(:complete_time) @latency_ms = args[:latency_ms] if args.key?(:latency_ms) @start_time = args[:start_time] if args.key?(:start_time) @step = args[:step] if args.key?(:step) end |