class Google::Apis::SasportalV1alpha1::SasPortalListDevicesResponse

Response for ListDevices.

Attributes

devices[RW]

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

next_page_token[RW]

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

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/sasportal_v1alpha1/classes.rb, line 810
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 815
def update!(**args)
  @devices = args[:devices] if args.key?(:devices)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end