class Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1IssueModel

The issue model resource.

Attributes

create_time[RW]

Output only. The time at which this issue model was created. Corresponds to the JSON property `createTime` @return [String]

display_name[RW]

The representative name for the issue model. Corresponds to the JSON property `displayName` @return [String]

input_data_config[RW]

Configs for the input data used to create the issue model. Corresponds to the JSON property `inputDataConfig` @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1IssueModelInputDataConfig]

name[RW]

Immutable. The resource name of the issue model. Format: projects/`project`/ locations/`location`/issueModels/`issue_model` Corresponds to the JSON property `name` @return [String]

state[RW]

Output only. State of the model. Corresponds to the JSON property `state` @return [String]

training_stats[RW]

Aggregated statistics about an issue model. Corresponds to the JSON property `trainingStats` @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1IssueModelLabelStats]

update_time[RW]

Output only. The most recent time at which the issue model was updated. Corresponds to the JSON property `updateTime` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/contactcenterinsights_v1/classes.rb, line 2728
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/contactcenterinsights_v1/classes.rb, line 2733
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