Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1IssueModel

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

Overview

The issue model resource.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1alpha1IssueModel

Returns a new instance of GoogleCloudContactcenterinsightsV1alpha1IssueModel.



6438
6439
6440
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 6438

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

Instance Attribute Details

#create_timeString

Output only. The time at which this issue model was created. Corresponds to the JSON property createTime

Returns:

  • (String)


6390
6391
6392
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 6390

def create_time
  @create_time
end

#display_nameString

The representative name for the issue model. Corresponds to the JSON property displayName

Returns:

  • (String)


6395
6396
6397
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 6395

def display_name
  @display_name
end

#input_data_configGoogle::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1IssueModelInputDataConfig

Configs for the input data used to create the issue model. Corresponds to the JSON property inputDataConfig



6400
6401
6402
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 6400

def input_data_config
  @input_data_config
end

#issue_countFixnum

Output only. Number of issues in this issue model. Corresponds to the JSON property issueCount

Returns:

  • (Fixnum)


6405
6406
6407
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 6405

def issue_count
  @issue_count
end

#language_codeString

Language of the model. Corresponds to the JSON property languageCode

Returns:

  • (String)


6410
6411
6412
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 6410

def language_code
  @language_code
end

#model_typeString

Type of the model. Corresponds to the JSON property modelType

Returns:

  • (String)


6415
6416
6417
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 6415

def model_type
  @model_type
end

#nameString

Immutable. The resource name of the issue model. Format: projects/project/ locations/location/issueModels/issue_model Corresponds to the JSON property name

Returns:

  • (String)


6421
6422
6423
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 6421

def name
  @name
end

#stateString

Output only. State of the model. Corresponds to the JSON property state

Returns:

  • (String)


6426
6427
6428
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 6426

def state
  @state
end

#training_statsGoogle::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1IssueModelLabelStats

Aggregated statistics about an issue model. Corresponds to the JSON property trainingStats



6431
6432
6433
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 6431

def training_stats
  @training_stats
end

#update_timeString

Output only. The most recent time at which the issue model was updated. Corresponds to the JSON property updateTime

Returns:

  • (String)


6436
6437
6438
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 6436

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6443
6444
6445
6446
6447
6448
6449
6450
6451
6452
6453
6454
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 6443

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)
  @issue_count = args[:issue_count] if args.key?(:issue_count)
  @language_code = args[:language_code] if args.key?(:language_code)
  @model_type = args[:model_type] if args.key?(:model_type)
  @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