Class: Google::Apis::AndroidmanagementV1::ListWebAppsResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/androidmanagement_v1/classes.rb,
lib/google/apis/androidmanagement_v1/representations.rb,
lib/google/apis/androidmanagement_v1/representations.rb

Overview

Response to a request to list web apps for a given enterprise.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListWebAppsResponse

Returns a new instance of ListWebAppsResponse.



2795
2796
2797
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 2795

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#next_page_tokenString

If there are more results, a token to retrieve next page of results. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


2788
2789
2790
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 2788

def next_page_token
  @next_page_token
end

#web_appsArray<Google::Apis::AndroidmanagementV1::WebApp>

The list of web apps. Corresponds to the JSON property webApps



2793
2794
2795
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 2793

def web_apps
  @web_apps
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2800
2801
2802
2803
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 2800

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