Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1GcsSource
- Inherits:
-
Object
- Object
- Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1GcsSource
- 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
A Cloud Storage source of conversation data.
Instance Attribute Summary collapse
-
#audio_uri ⇒ String
Cloud Storage URI that points to a file that contains the conversation audio.
-
#transcript_uri ⇒ String
Immutable.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1alpha1GcsSource
constructor
A new instance of GoogleCloudContactcenterinsightsV1alpha1GcsSource.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1alpha1GcsSource
Returns a new instance of GoogleCloudContactcenterinsightsV1alpha1GcsSource.
5800 5801 5802 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 5800 def initialize(**args) update!(**args) end |
Instance Attribute Details
#audio_uri ⇒ String
Cloud Storage URI that points to a file that contains the conversation audio.
Corresponds to the JSON property audioUri
5792 5793 5794 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 5792 def audio_uri @audio_uri end |
#transcript_uri ⇒ String
Immutable. Cloud Storage URI that points to a file that contains the
conversation transcript.
Corresponds to the JSON property transcriptUri
5798 5799 5800 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 5798 def transcript_uri @transcript_uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5805 5806 5807 5808 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 5805 def update!(**args) @audio_uri = args[:audio_uri] if args.key?(:audio_uri) @transcript_uri = args[:transcript_uri] if args.key?(:transcript_uri) end |