class Google::Apis::AccesscontextmanagerV1::ListAccessLevelsResponse

A response to `ListAccessLevelsRequest`.

Attributes

access_levels[RW]

List of the Access Level instances. Corresponds to the JSON property `accessLevels` @return [Array<Google::Apis::AccesscontextmanagerV1::AccessLevel>]

next_page_token[RW]

The pagination token to retrieve the next page of results. If the value is empty, no further results remain. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

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