class Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1Analysis

The analysis resource.

Attributes

analysis_result[RW]

The result of an analysis. Corresponds to the JSON property `analysisResult` @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1AnalysisResult]

create_time[RW]

Output only. The time at which the analysis was created, which occurs when the long-running operation completes. Corresponds to the JSON property `createTime` @return [String]

name[RW]

Immutable. The resource name of the analysis. Format: projects/`project`/ locations/`location`/conversations/`conversation`/analyses/`analysis` Corresponds to the JSON property `name` @return [String]

request_time[RW]

Output only. The time at which the analysis was requested. Corresponds to the JSON property `requestTime` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/contactcenterinsights_v1/classes.rb, line 51
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 56
def update!(**args)
  @analysis_result = args[:analysis_result] if args.key?(:analysis_result)
  @create_time = args[:create_time] if args.key?(:create_time)
  @name = args[:name] if args.key?(:name)
  @request_time = args[:request_time] if args.key?(:request_time)
end