class Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IssueModel
The issue model resource.
Attributes
Output only. The time at which this issue model was created. Corresponds to the JSON property `createTime` @return [String]
The representative name for the issue model. Corresponds to the JSON property `displayName` @return [String]
Configs for the input data used to create the issue model. Corresponds to the JSON property `inputDataConfig` @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IssueModelInputDataConfig]
Immutable. The resource name of the issue model. Format: projects/`project`/ locations/`location`/issueModels/`issue_model` Corresponds to the JSON property `name` @return [String]
Output only. State of the model. Corresponds to the JSON property `state` @return [String]
Aggregated statistics about an issue model. Corresponds to the JSON property `trainingStats` @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IssueModelLabelStats]
Output only. The most recent time at which the issue model was updated. Corresponds to the JSON property `updateTime` @return [String]
Public Class Methods
# File lib/google/apis/contactcenterinsights_v1/classes.rb, line 1587 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/contactcenterinsights_v1/classes.rb, line 1592 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @display_name = args[:display_name] if args.key?(:display_name) @input_data_config = args[:input_data_config] if args.key?(:input_data_config) @name = args[:name] if args.key?(:name) @state = args[:state] if args.key?(:state) @training_stats = args[:training_stats] if args.key?(:training_stats) @update_time = args[:update_time] if args.key?(:update_time) end