Class: Google::Apis::AndroidmanagementV1::ListEnterprisesResponse
- Inherits:
-
Object
- Object
- Google::Apis::AndroidmanagementV1::ListEnterprisesResponse
- 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 enterprises.
Instance Attribute Summary collapse
-
#enterprises ⇒ Array<Google::Apis::AndroidmanagementV1::Enterprise>
The list of enterprises.
-
#next_page_token ⇒ String
If there are more results, a token to retrieve next page of results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListEnterprisesResponse
constructor
A new instance of ListEnterprisesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListEnterprisesResponse
Returns a new instance of ListEnterprisesResponse.
2899 2900 2901 |
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 2899 def initialize(**args) update!(**args) end |
Instance Attribute Details
#enterprises ⇒ Array<Google::Apis::AndroidmanagementV1::Enterprise>
The list of enterprises.
Corresponds to the JSON property enterprises
2892 2893 2894 |
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 2892 def enterprises @enterprises end |
#next_page_token ⇒ String
If there are more results, a token to retrieve next page of results.
Corresponds to the JSON property nextPageToken
2897 2898 2899 |
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 2897 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2904 2905 2906 2907 |
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 2904 def update!(**args) @enterprises = args[:enterprises] if args.key?(:enterprises) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |