class Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1GcsSource

A Cloud Storage source of conversation data.

Attributes

audio_uri[RW]

Cloud Storage URI that points to a file that contains the conversation audio. Corresponds to the JSON property `audioUri` @return [String]

transcript_uri[RW]

Immutable. Cloud Storage URI that points to a file that contains the conversation transcript. Corresponds to the JSON property `transcriptUri` @return [String]

Public Class Methods

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