Class: Google::Apis::AndroidmanagementV1::ListEnterprisesResponse

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 enterprises.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListEnterprisesResponse

Returns a new instance of ListEnterprisesResponse.



2076
2077
2078
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 2076

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

Instance Attribute Details

#enterprisesArray<Google::Apis::AndroidmanagementV1::Enterprise>

The list of enterprises. Corresponds to the JSON property enterprises



2069
2070
2071
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 2069

def enterprises
  @enterprises
end

#next_page_tokenString

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

Returns:

  • (String)


2074
2075
2076
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 2074

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2081
2082
2083
2084
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 2081

def update!(**args)
  @enterprises = args[:enterprises] if args.key?(:enterprises)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end