class Google::Apis::AndroidmanagementV1::ListPoliciesResponse

Response to a request to list policies for a given enterprise.

Attributes

next_page_token[RW]

If there are more results, a token to retrieve next page of results. Corresponds to the JSON property `nextPageToken` @return [String]

policies[RW]

The list of policies. Corresponds to the JSON property `policies` @return [Array<Google::Apis::AndroidmanagementV1::Policy>]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

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