Class: Google::Cloud::Dialogflow::V2::ServiceLatency
- Inherits:
-
Object
- Object
- Google::Cloud::Dialogflow::V2::ServiceLatency
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/dialogflow/v2/participant.rb
Overview
Message to represent the latency of the service.
Defined Under Namespace
Classes: InternalServiceLatency
Instance Attribute Summary collapse
-
#internal_service_latencies ⇒ ::Array<::Google::Cloud::Dialogflow::V2::ServiceLatency::InternalServiceLatency>
A list of internal service latencies.
Instance Attribute Details
#internal_service_latencies ⇒ ::Array<::Google::Cloud::Dialogflow::V2::ServiceLatency::InternalServiceLatency>
Returns A list of internal service latencies.
1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 |
# File 'proto_docs/google/cloud/dialogflow/v2/participant.rb', line 1304 class ServiceLatency include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Message to represent the latency of an internal service. # @!attribute [rw] step # @return [::String] # The name of the internal service. # @!attribute [rw] latency_ms # @return [::Float] # The latency of the internal service in milliseconds. # @!attribute [rw] start_time # @return [::Google::Protobuf::Timestamp] # The start time of the internal service. # @!attribute [rw] complete_time # @return [::Google::Protobuf::Timestamp] # The completion time of the internal service. class InternalServiceLatency include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |