class Google::Apis::ChromepolicyV1::GoogleChromePolicyV1ListPolicySchemasResponse

Response message for listing policy schemas that match a filter.

Attributes

next_page_token[RW]

The page token used to get the next page of policy schemas. Corresponds to the JSON property `nextPageToken` @return [String]

policy_schemas[RW]

The list of policy schemas that match the query. Corresponds to the JSON property `policySchemas` @return [Array<Google::Apis::ChromepolicyV1::GoogleChromePolicyV1PolicySchema>]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

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