Class: Google::Apis::AndroidmanagementV1::ListWebAppsResponse
- Inherits:
-
Object
- Object
- Google::Apis::AndroidmanagementV1::ListWebAppsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/androidmanagement_v1/classes.rb,
generated/google/apis/androidmanagement_v1/representations.rb,
generated/google/apis/androidmanagement_v1/representations.rb
Overview
Response to a request to list web apps for a given enterprise.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
If there are more results, a token to retrieve next page of results.
-
#web_apps ⇒ Array<Google::Apis::AndroidmanagementV1::WebApp>
The list of web apps.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListWebAppsResponse
constructor
A new instance of ListWebAppsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListWebAppsResponse
Returns a new instance of ListWebAppsResponse.
1715 1716 1717 |
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 1715 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
If there are more results, a token to retrieve next page of results.
Corresponds to the JSON property nextPageToken
1708 1709 1710 |
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 1708 def next_page_token @next_page_token end |
#web_apps ⇒ Array<Google::Apis::AndroidmanagementV1::WebApp>
The list of web apps.
Corresponds to the JSON property webApps
1713 1714 1715 |
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 1713 def web_apps @web_apps end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1720 1721 1722 1723 |
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 1720 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 |