Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1Issue
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1Issue
 
 
- 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 resource.
Instance Attribute Summary collapse
- 
  
    
      #create_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Output only.
 - 
  
    
      #display_description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Representative description of the issue.
 - 
  
    
      #display_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The representative name for the issue.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Immutable.
 - 
  
    
      #sample_utterances  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Output only.
 - 
  
    
      #update_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Output only.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudContactcenterinsightsV1Issue 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudContactcenterinsightsV1Issue.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1Issue
Returns a new instance of GoogleCloudContactcenterinsightsV1Issue.
      2648 2649 2650  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 2648 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#create_time ⇒ String
Output only. The time at which this issue was created.
Corresponds to the JSON property createTime
      2619 2620 2621  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 2619 def create_time @create_time end  | 
  
#display_description ⇒ String
Representative description of the issue.
Corresponds to the JSON property displayDescription
      2624 2625 2626  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 2624 def display_description @display_description end  | 
  
#display_name ⇒ String
The representative name for the issue.
Corresponds to the JSON property displayName
      2629 2630 2631  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 2629 def display_name @display_name end  | 
  
#name ⇒ String
Immutable. The resource name of the issue. Format: projects/project/
locations/location/issueModels/issue_model/issues/issue
Corresponds to the JSON property name
      2635 2636 2637  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 2635 def name @name end  | 
  
#sample_utterances ⇒ Array<String>
Output only. Resource names of the sample representative utterances that match
to this issue.
Corresponds to the JSON property sampleUtterances
      2641 2642 2643  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 2641 def sample_utterances @sample_utterances end  | 
  
#update_time ⇒ String
Output only. The most recent time that this issue was updated.
Corresponds to the JSON property updateTime
      2646 2647 2648  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 2646 def update_time @update_time end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2653 2654 2655 2656 2657 2658 2659 2660  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 2653 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @display_description = args[:display_description] if args.key?(:display_description) @display_name = args[:display_name] if args.key?(:display_name) @name = args[:name] if args.key?(:name) @sample_utterances = args[:sample_utterances] if args.key?(:sample_utterances) @update_time = args[:update_time] if args.key?(:update_time) end  |