class Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1Issue

The issue resource.

Attributes

create_time[RW]

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

display_name[RW]

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

name[RW]

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

update_time[RW]

Output only. The most recent time that this issue 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 1501
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 1506
def update!(**args)
  @create_time = args[:create_time] if args.key?(:create_time)
  @display_name = args[:display_name] if args.key?(:display_name)
  @name = args[:name] if args.key?(:name)
  @update_time = args[:update_time] if args.key?(:update_time)
end