Class: Google::Apis::ContactcenteraiplatformV1alpha1::ListContactCentersResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ContactcenteraiplatformV1alpha1::ListContactCentersResponse
 
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb,
 lib/google/apis/contactcenteraiplatform_v1alpha1/representations.rb,
 lib/google/apis/contactcenteraiplatform_v1alpha1/representations.rb
Overview
Message for response to listing ContactCenters
Instance Attribute Summary collapse
- 
  
    
      #contact_centers  ⇒ Array<Google::Apis::ContactcenteraiplatformV1alpha1::ContactCenter> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The list of ContactCenter Corresponds to the JSON property contactCenters.
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A token identifying a page of results the server should return. 
- 
  
    
      #unreachable  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Locations that could not be reached. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListContactCentersResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ListContactCentersResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Constructor Details
#initialize(**args) ⇒ ListContactCentersResponse
Returns a new instance of ListContactCentersResponse.
| 408 409 410 | # File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 408 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#contact_centers ⇒ Array<Google::Apis::ContactcenteraiplatformV1alpha1::ContactCenter>
The list of ContactCenter
Corresponds to the JSON property contactCenters
| 396 397 398 | # File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 396 def contact_centers @contact_centers end | 
#next_page_token ⇒ String
A token identifying a page of results the server should return.
Corresponds to the JSON property nextPageToken
| 401 402 403 | # File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 401 def next_page_token @next_page_token end | 
#unreachable ⇒ Array<String>
Locations that could not be reached.
Corresponds to the JSON property unreachable
| 406 407 408 | # File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 406 def unreachable @unreachable end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 413 414 415 416 417 | # File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 413 def update!(**args) @contact_centers = args[:contact_centers] if args.key?(:contact_centers) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @unreachable = args[:unreachable] if args.key?(:unreachable) end |