Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ListDiagnosticsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ListDiagnosticsResponse
- 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
The response from a ListDiagnostics request.
Instance Attribute Summary collapse
-
#diagnostics ⇒ Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1Diagnostic>
Optional.
-
#next_page_token ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1ListDiagnosticsResponse
constructor
A new instance of GoogleCloudContactcenterinsightsV1ListDiagnosticsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1ListDiagnosticsResponse
Returns a new instance of GoogleCloudContactcenterinsightsV1ListDiagnosticsResponse.
6943 6944 6945 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 6943 def initialize(**args) update!(**args) end |
Instance Attribute Details
#diagnostics ⇒ Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1Diagnostic>
Optional. The diagnostics that match the request.
Corresponds to the JSON property diagnostics
6935 6936 6937 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 6935 def diagnostics @diagnostics end |
#next_page_token ⇒ String
Optional. A token, which can be sent as page_token to retrieve the next page.
If this field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
6941 6942 6943 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 6941 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6948 6949 6950 6951 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 6948 def update!(**args) @diagnostics = args[:diagnostics] if args.key?(:diagnostics) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |