Class: Google::Apis::CesV1::ListAppsResponse
- Inherits:
-
Object
- Object
- Google::Apis::CesV1::ListAppsResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/ces_v1/classes.rb,
lib/google/apis/ces_v1/representations.rb,
lib/google/apis/ces_v1/representations.rb
Overview
Response message for AgentService.ListApps.
Instance Attribute Summary collapse
-
#apps ⇒ Array<Google::Apis::CesV1::App>
The list of apps.
-
#next_page_token ⇒ String
A token that can be sent as ListAppsRequest.page_token to retrieve the next page.
-
#unreachable ⇒ Array<String>
Unordered list.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListAppsResponse
constructor
A new instance of ListAppsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListAppsResponse
Returns a new instance of ListAppsResponse.
4262 4263 4264 |
# File 'lib/google/apis/ces_v1/classes.rb', line 4262 def initialize(**args) update!(**args) end |
Instance Attribute Details
#apps ⇒ Array<Google::Apis::CesV1::App>
The list of apps.
Corresponds to the JSON property apps
4249 4250 4251 |
# File 'lib/google/apis/ces_v1/classes.rb', line 4249 def apps @apps end |
#next_page_token ⇒ String
A token that can be sent as ListAppsRequest.page_token to retrieve the next
page. Absence of this field indicates there are no subsequent pages.
Corresponds to the JSON property nextPageToken
4255 4256 4257 |
# File 'lib/google/apis/ces_v1/classes.rb', line 4255 def next_page_token @next_page_token end |
#unreachable ⇒ Array<String>
Unordered list. Locations that could not be reached.
Corresponds to the JSON property unreachable
4260 4261 4262 |
# File 'lib/google/apis/ces_v1/classes.rb', line 4260 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4267 4268 4269 4270 4271 |
# File 'lib/google/apis/ces_v1/classes.rb', line 4267 def update!(**args) @apps = args[:apps] if args.key?(:apps) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @unreachable = args[:unreachable] if args.key?(:unreachable) end |