Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IssueModel
- Inherits:
-
Object
- Object
- Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IssueModel
- 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
-
#create_time ⇒ String
Output only.
-
#display_name ⇒ String
The representative name for the issue model.
-
#input_data_config ⇒ Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IssueModelInputDataConfig
Configs for the input data used to create the issue model.
-
#name ⇒ String
Immutable.
-
#state ⇒ String
Output only.
-
#training_stats ⇒ Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IssueModelLabelStats
Aggregated statistics about an issue model.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1IssueModel
constructor
A new instance of GoogleCloudContactcenterinsightsV1IssueModel.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1IssueModel
Returns a new instance of GoogleCloudContactcenterinsightsV1IssueModel.
1652 1653 1654 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 1652 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. The time at which this issue model was created.
Corresponds to the JSON property createTime
1619 1620 1621 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 1619 def create_time @create_time end |
#display_name ⇒ String
The representative name for the issue model.
Corresponds to the JSON property displayName
1624 1625 1626 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 1624 def display_name @display_name end |
#input_data_config ⇒ Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IssueModelInputDataConfig
Configs for the input data used to create the issue model.
Corresponds to the JSON property inputDataConfig
1629 1630 1631 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 1629 def input_data_config @input_data_config end |
#name ⇒ String
Immutable. The resource name of the issue model. Format: projects/project
/
locations/location
/issueModels/issue_model
Corresponds to the JSON property name
1635 1636 1637 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 1635 def name @name end |
#state ⇒ String
Output only. State of the model.
Corresponds to the JSON property state
1640 1641 1642 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 1640 def state @state end |
#training_stats ⇒ Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IssueModelLabelStats
Aggregated statistics about an issue model.
Corresponds to the JSON property trainingStats
1645 1646 1647 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 1645 def training_stats @training_stats end |
#update_time ⇒ String
Output only. The most recent time at which the issue model was updated.
Corresponds to the JSON property updateTime
1650 1651 1652 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 1650 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1657 1658 1659 1660 1661 1662 1663 1664 1665 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 1657 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 |