Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ListChartsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ListChartsResponse
- 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 of listing charts.
Instance Attribute Summary collapse
-
#charts ⇒ Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1Chart>
The charts under the parent.
-
#next_page_token ⇒ String
The value returned by the last
ListChartsResponse.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1ListChartsResponse
constructor
A new instance of GoogleCloudContactcenterinsightsV1ListChartsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1ListChartsResponse
Returns a new instance of GoogleCloudContactcenterinsightsV1ListChartsResponse.
6837 6838 6839 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 6837 def initialize(**args) update!(**args) end |
Instance Attribute Details
#charts ⇒ Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1Chart>
The charts under the parent.
Corresponds to the JSON property charts
6828 6829 6830 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 6828 def charts @charts end |
#next_page_token ⇒ String
The value returned by the last ListChartsResponse. This value indicates that
this is a continuation of a prior ListCharts call and that the system should
return the next page of data.
Corresponds to the JSON property nextPageToken
6835 6836 6837 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 6835 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6842 6843 6844 6845 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 6842 def update!(**args) @charts = args[:charts] if args.key?(:charts) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |