Class: Google::Apis::ServicedirectoryV1::ListNamespacesResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ServicedirectoryV1::ListNamespacesResponse
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/servicedirectory_v1/classes.rb,
lib/google/apis/servicedirectory_v1/representations.rb,
lib/google/apis/servicedirectory_v1/representations.rb 
Overview
The response message for RegistrationService.ListNamespaces.
Instance Attribute Summary collapse
- 
  
    
      #namespaces  ⇒ Array<Google::Apis::ServicedirectoryV1::Namespace> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The list of namespaces.
 - 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Token to retrieve the next page of results, or empty if there are no more results in the list.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListNamespacesResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ListNamespacesResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ ListNamespacesResponse
Returns a new instance of ListNamespacesResponse.
      379 380 381  | 
    
      # File 'lib/google/apis/servicedirectory_v1/classes.rb', line 379 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#namespaces ⇒ Array<Google::Apis::ServicedirectoryV1::Namespace>
The list of namespaces.
Corresponds to the JSON property namespaces
      371 372 373  | 
    
      # File 'lib/google/apis/servicedirectory_v1/classes.rb', line 371 def namespaces @namespaces end  | 
  
#next_page_token ⇒ String
Token to retrieve the next page of results, or empty if there are no more
results in the list.
Corresponds to the JSON property nextPageToken
      377 378 379  | 
    
      # File 'lib/google/apis/servicedirectory_v1/classes.rb', line 377 def next_page_token @next_page_token end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      384 385 386 387  | 
    
      # File 'lib/google/apis/servicedirectory_v1/classes.rb', line 384 def update!(**args) @namespaces = args[:namespaces] if args.key?(:namespaces) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end  |