Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ListAuthorizedViewsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ListAuthorizedViewsResponse
- 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 ListAuthorizedViews request.
Instance Attribute Summary collapse
-
#authorized_views ⇒ Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1AuthorizedView>
The AuthorizedViews under the parent.
-
#next_page_token ⇒ String
A token, which can be sent as
page_tokento retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1ListAuthorizedViewsResponse
constructor
A new instance of GoogleCloudContactcenterinsightsV1ListAuthorizedViewsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1ListAuthorizedViewsResponse
Returns a new instance of GoogleCloudContactcenterinsightsV1ListAuthorizedViewsResponse.
4623 4624 4625 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4623 def initialize(**args) update!(**args) end |
Instance Attribute Details
#authorized_views ⇒ Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1AuthorizedView>
The AuthorizedViews under the parent.
Corresponds to the JSON property authorizedViews
4615 4616 4617 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4615 def @authorized_views end |
#next_page_token ⇒ String
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
4621 4622 4623 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4621 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4628 4629 4630 4631 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4628 def update!(**args) @authorized_views = args[:authorized_views] if args.key?(:authorized_views) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |