Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1mainExportIssueModelRequest
- Inherits:
-
Object
- Object
- Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1mainExportIssueModelRequest
- 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
Request to export an issue model.
Instance Attribute Summary collapse
-
#gcs_destination ⇒ Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1mainExportIssueModelRequestGcsDestination
Google Cloud Storage Object URI to save the issue model to.
-
#name ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1mainExportIssueModelRequest
constructor
A new instance of GoogleCloudContactcenterinsightsV1mainExportIssueModelRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1mainExportIssueModelRequest
Returns a new instance of GoogleCloudContactcenterinsightsV1mainExportIssueModelRequest.
18660 18661 18662 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 18660 def initialize(**args) update!(**args) end |
Instance Attribute Details
#gcs_destination ⇒ Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1mainExportIssueModelRequestGcsDestination
Google Cloud Storage Object URI to save the issue model to.
Corresponds to the JSON property gcsDestination
18653 18654 18655 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 18653 def gcs_destination @gcs_destination end |
#name ⇒ String
Required. The issue model to export.
Corresponds to the JSON property name
18658 18659 18660 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 18658 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
18665 18666 18667 18668 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 18665 def update!(**args) @gcs_destination = args[:gcs_destination] if args.key?(:gcs_destination) @name = args[:name] if args.key?(:name) end |