Class: Google::Apis::ServicedirectoryV1::ListNamespacesResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListNamespacesResponse

Returns a new instance of ListNamespacesResponse.



345
346
347
# File 'lib/google/apis/servicedirectory_v1/classes.rb', line 345

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#namespacesArray<Google::Apis::ServicedirectoryV1::Namespace>

The list of namespaces. Corresponds to the JSON property namespaces



337
338
339
# File 'lib/google/apis/servicedirectory_v1/classes.rb', line 337

def namespaces
  @namespaces
end

#next_page_tokenString

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

Returns:

  • (String)


343
344
345
# File 'lib/google/apis/servicedirectory_v1/classes.rb', line 343

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



350
351
352
353
# File 'lib/google/apis/servicedirectory_v1/classes.rb', line 350

def update!(**args)
  @namespaces = args[:namespaces] if args.key?(:namespaces)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end