Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2ConversationModel

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dialogflow_v3/classes.rb,
lib/google/apis/dialogflow_v3/representations.rb,
lib/google/apis/dialogflow_v3/representations.rb

Overview

Represents a conversation model.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2ConversationModel

Returns a new instance of GoogleCloudDialogflowV2ConversationModel.



12334
12335
12336
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 12334

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#article_suggestion_model_metadataGoogle::Apis::DialogflowV3::GoogleCloudDialogflowV2ArticleSuggestionModelMetadata

Metadata for article suggestion models. Corresponds to the JSON property articleSuggestionModelMetadata



12293
12294
12295
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 12293

def 
  @article_suggestion_model_metadata
end

#create_timeString

Output only. Creation time of this model. Corresponds to the JSON property createTime

Returns:

  • (String)


12298
12299
12300
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 12298

def create_time
  @create_time
end

#datasetsArray<Google::Apis::DialogflowV3::GoogleCloudDialogflowV2InputDataset>

Required. Datasets used to create model. Corresponds to the JSON property datasets



12303
12304
12305
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 12303

def datasets
  @datasets
end

#display_nameString

Required. The display name of the model. At most 64 bytes long. Corresponds to the JSON property displayName

Returns:

  • (String)


12308
12309
12310
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 12308

def display_name
  @display_name
end

#language_codeString

Language code for the conversation model. If not specified, the language is en- US. Language at ConversationModel should be set for all non en-us languages. This should be a BCP-47 language tag. Example: "en-US". Corresponds to the JSON property languageCode

Returns:

  • (String)


12316
12317
12318
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 12316

def language_code
  @language_code
end

#nameString

ConversationModel resource name. Format: projects//conversationModels/ Corresponds to the JSON property name

Returns:

  • (String)


12321
12322
12323
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 12321

def name
  @name
end

#smart_reply_model_metadataGoogle::Apis::DialogflowV3::GoogleCloudDialogflowV2SmartReplyModelMetadata

Metadata for smart reply models. Corresponds to the JSON property smartReplyModelMetadata



12326
12327
12328
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 12326

def 
  @smart_reply_model_metadata
end

#stateString

Output only. State of the model. A model can only serve prediction requests after it gets deployed. Corresponds to the JSON property state

Returns:

  • (String)


12332
12333
12334
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 12332

def state
  @state
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



12339
12340
12341
12342
12343
12344
12345
12346
12347
12348
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 12339

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)
  @smart_reply_model_metadata = args[:smart_reply_model_metadata] if args.key?(:smart_reply_model_metadata)
  @state = args[:state] if args.key?(:state)
end