Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1BulkUploadFeedbackLabelsRequestGcsSource
- Inherits:
-
Object
- Object
- Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1BulkUploadFeedbackLabelsRequestGcsSource
- 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
Google Cloud Storage Object details to get the feedback label file from.
Instance Attribute Summary collapse
-
#format ⇒ String
Required.
-
#object_uri ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1BulkUploadFeedbackLabelsRequestGcsSource
constructor
A new instance of GoogleCloudContactcenterinsightsV1BulkUploadFeedbackLabelsRequestGcsSource.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1BulkUploadFeedbackLabelsRequestGcsSource
Returns a new instance of GoogleCloudContactcenterinsightsV1BulkUploadFeedbackLabelsRequestGcsSource.
1406 1407 1408 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 1406 def initialize(**args) update!(**args) end |
Instance Attribute Details
#format ⇒ String
Required. File format which will be ingested.
Corresponds to the JSON property format
1398 1399 1400 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 1398 def format @format end |
#object_uri ⇒ String
Required. The Google Cloud Storage URI of the file to import. Format: gs://
bucket_name/object_name
Corresponds to the JSON property objectUri
1404 1405 1406 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 1404 def object_uri @object_uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1411 1412 1413 1414 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 1411 def update!(**args) @format = args[:format] if args.key?(:format) @object_uri = args[:object_uri] if args.key?(:object_uri) end |