class Google::Apis::SasportalV1alpha1::SasPortalListNodesResponse

Response for ListNodes.

Attributes

next_page_token[RW]

A pagination token returned from a previous call to ListNodes that indicates from where listing should continue. If the field is missing or empty, it means there is no more nodes. Corresponds to the JSON property `nextPageToken` @return [String]

nodes[RW]

The nodes that match the request. Corresponds to the JSON property `nodes` @return [Array<Google::Apis::SasportalV1alpha1::SasPortalNode>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/sasportal_v1alpha1/classes.rb, line 837
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/sasportal_v1alpha1/classes.rb, line 842
def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @nodes = args[:nodes] if args.key?(:nodes)
end