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