Class: Google::Apis::CesV1::ListAppVersionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::CesV1::ListAppVersionsResponse
- 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.ListAppVersions.
Instance Attribute Summary collapse
-
#app_versions ⇒ Array<Google::Apis::CesV1::AppVersion>
The list of app versions.
-
#next_page_token ⇒ String
A token that can be sent as ListAppVersionsRequest.page_token to retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListAppVersionsResponse
constructor
A new instance of ListAppVersionsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListAppVersionsResponse
Returns a new instance of ListAppVersionsResponse.
5656 5657 5658 |
# File 'lib/google/apis/ces_v1/classes.rb', line 5656 def initialize(**args) update!(**args) end |
Instance Attribute Details
#app_versions ⇒ Array<Google::Apis::CesV1::AppVersion>
The list of app versions.
Corresponds to the JSON property appVersions
5648 5649 5650 |
# File 'lib/google/apis/ces_v1/classes.rb', line 5648 def app_versions @app_versions end |
#next_page_token ⇒ String
A token that can be sent as ListAppVersionsRequest.page_token to retrieve the
next page. Absence of this field indicates there are no subsequent pages.
Corresponds to the JSON property nextPageToken
5654 5655 5656 |
# File 'lib/google/apis/ces_v1/classes.rb', line 5654 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5661 5662 5663 5664 |
# File 'lib/google/apis/ces_v1/classes.rb', line 5661 def update!(**args) @app_versions = args[:app_versions] if args.key?(:app_versions) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |