Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ListViewsResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ListViewsResponse
 
 
- 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 views.
Instance Attribute Summary collapse
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A token, which can be sent as
page_tokento retrieve the next page. - 
  
    
      #views  ⇒ Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1View> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The views that match the request.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudContactcenterinsightsV1ListViewsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudContactcenterinsightsV1ListViewsResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1ListViewsResponse
Returns a new instance of GoogleCloudContactcenterinsightsV1ListViewsResponse.
      3045 3046 3047  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3045 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#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
      3038 3039 3040  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3038 def next_page_token @next_page_token end  | 
  
#views ⇒ Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1View>
The views that match the request.
Corresponds to the JSON property views
      3043 3044 3045  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3043 def views @views end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      3050 3051 3052 3053  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3050 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @views = args[:views] if args.key?(:views) end  |