Class: Google::Apis::CesV1::ListAppsResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListAppsResponse

Returns a new instance of ListAppsResponse.



4735
4736
4737
# File 'lib/google/apis/ces_v1/classes.rb', line 4735

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

Instance Attribute Details

#appsArray<Google::Apis::CesV1::App>

The list of apps. Corresponds to the JSON property apps

Returns:



4722
4723
4724
# File 'lib/google/apis/ces_v1/classes.rb', line 4722

def apps
  @apps
end

#next_page_tokenString

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

Returns:

  • (String)


4728
4729
4730
# File 'lib/google/apis/ces_v1/classes.rb', line 4728

def next_page_token
  @next_page_token
end

#unreachableArray<String>

Unordered list. Locations that could not be reached. Corresponds to the JSON property unreachable

Returns:

  • (Array<String>)


4733
4734
4735
# File 'lib/google/apis/ces_v1/classes.rb', line 4733

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4740
4741
4742
4743
4744
# File 'lib/google/apis/ces_v1/classes.rb', line 4740

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