class Google::Apis::AndroidmanagementV1::ListEnterprisesResponse
Response to a request to list enterprises.
Attributes
enterprises[RW]
The list of enterprises. Corresponds to the JSON property `enterprises` @return [Array<Google::Apis::AndroidmanagementV1::Enterprise>]
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]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/androidmanagement_v1/classes.rb, line 1862 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 1867 def update!(**args) @enterprises = args[:enterprises] if args.key?(:enterprises) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end