Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1LanguageInfo
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1LanguageInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2/classes.rb,
lib/google/apis/dialogflow_v2/representations.rb,
lib/google/apis/dialogflow_v2/representations.rb
Overview
Represents the language information of the request.
Instance Attribute Summary collapse
-
#confidence_score ⇒ Float
The confidence score of the detected language between 0 and 1.
-
#input_language_code ⇒ String
The language code specified in the original request.
-
#resolved_language_code ⇒ String
The language code detected for this request based on the user conversation.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1LanguageInfo
constructor
A new instance of GoogleCloudDialogflowCxV3beta1LanguageInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1LanguageInfo
Returns a new instance of GoogleCloudDialogflowCxV3beta1LanguageInfo.
5966 5967 5968 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 5966 def initialize(**args) update!(**args) end |
Instance Attribute Details
#confidence_score ⇒ Float
The confidence score of the detected language between 0 and 1.
Corresponds to the JSON property confidenceScore
5954 5955 5956 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 5954 def confidence_score @confidence_score end |
#input_language_code ⇒ String
The language code specified in the original request.
Corresponds to the JSON property inputLanguageCode
5959 5960 5961 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 5959 def input_language_code @input_language_code end |
#resolved_language_code ⇒ String
The language code detected for this request based on the user conversation.
Corresponds to the JSON property resolvedLanguageCode
5964 5965 5966 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 5964 def resolved_language_code @resolved_language_code end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5971 5972 5973 5974 5975 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 5971 def update!(**args) @confidence_score = args[:confidence_score] if args.key?(:confidence_score) @input_language_code = args[:input_language_code] if args.key?(:input_language_code) @resolved_language_code = args[:resolved_language_code] if args.key?(:resolved_language_code) end |