Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2ConversationModel
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2ConversationModel
- 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
-
#article_suggestion_model_metadata ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2ArticleSuggestionModelMetadata
Corresponds to the JSON property
articleSuggestionModelMetadata. -
#create_time ⇒ String
Corresponds to the JSON property
createTime. -
#datasets ⇒ Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2InputDataset>
Corresponds to the JSON property
datasets. -
#display_name ⇒ String
Corresponds to the JSON property
displayName. -
#language_code ⇒ String
Corresponds to the JSON property
languageCode. -
#name ⇒ String
Corresponds to the JSON property
name. -
#satisfies_pzi ⇒ Boolean
(also: #satisfies_pzi?)
Corresponds to the JSON property
satisfiesPzi. -
#satisfies_pzs ⇒ Boolean
(also: #satisfies_pzs?)
Corresponds to the JSON property
satisfiesPzs. -
#smart_reply_model_metadata ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2SmartReplyModelMetadata
Corresponds to the JSON property
smartReplyModelMetadata. -
#state ⇒ String
Corresponds to the JSON property
state.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2ConversationModel
constructor
A new instance of GoogleCloudDialogflowV2ConversationModel.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2ConversationModel
Returns a new instance of GoogleCloudDialogflowV2ConversationModel.
7332 7333 7334 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 7332 def initialize(**args) update!(**args) end |
Instance Attribute Details
#article_suggestion_model_metadata ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2ArticleSuggestionModelMetadata
Corresponds to the JSON property articleSuggestionModelMetadata
7283 7284 7285 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 7283 def @article_suggestion_model_metadata end |
#create_time ⇒ String
Corresponds to the JSON property createTime
7288 7289 7290 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 7288 def create_time @create_time end |
#datasets ⇒ Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2InputDataset>
Corresponds to the JSON property datasets
7293 7294 7295 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 7293 def datasets @datasets end |
#display_name ⇒ String
Corresponds to the JSON property displayName
7298 7299 7300 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 7298 def display_name @display_name end |
#language_code ⇒ String
Corresponds to the JSON property languageCode
7303 7304 7305 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 7303 def language_code @language_code end |
#name ⇒ String
Corresponds to the JSON property name
7308 7309 7310 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 7308 def name @name end |
#satisfies_pzi ⇒ Boolean Also known as: satisfies_pzi?
Corresponds to the JSON property satisfiesPzi
7313 7314 7315 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 7313 def satisfies_pzi @satisfies_pzi end |
#satisfies_pzs ⇒ Boolean Also known as: satisfies_pzs?
Corresponds to the JSON property satisfiesPzs
7319 7320 7321 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 7319 def satisfies_pzs @satisfies_pzs end |
#smart_reply_model_metadata ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2SmartReplyModelMetadata
Corresponds to the JSON property smartReplyModelMetadata
7325 7326 7327 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 7325 def @smart_reply_model_metadata end |
#state ⇒ String
Corresponds to the JSON property state
7330 7331 7332 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 7330 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 7337 def update!(**args) @article_suggestion_model_metadata = args[:article_suggestion_model_metadata] if args.key?(:article_suggestion_model_metadata) @create_time = args[:create_time] if args.key?(:create_time) @datasets = args[:datasets] if args.key?(:datasets) @display_name = args[:display_name] if args.key?(:display_name) @language_code = args[:language_code] if args.key?(:language_code) @name = args[:name] if args.key?(:name) @satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi) @satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs) @smart_reply_model_metadata = args[:smart_reply_model_metadata] if args.key?(:smart_reply_model_metadata) @state = args[:state] if args.key?(:state) end |