class Google::Apis::ChromepolicyV1::GoogleChromePolicyV1ResolveResponse

Response message for getting the resolved policy value for a specific target.

Attributes

next_page_token[RW]

The page token used to get the next set of resolved policies found by the request. Corresponds to the JSON property `nextPageToken` @return [String]

resolved_policies[RW]

The list of resolved policies found by the resolve request. Corresponds to the JSON property `resolvedPolicies` @return [Array<Google::Apis::ChromepolicyV1::GoogleChromePolicyV1ResolvedPolicy>]

Public Class Methods

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