Class: Google::Apis::CesV1::ListAppVersionsResponse

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListAppVersionsResponse

Returns a new instance of ListAppVersionsResponse.



4064
4065
4066
# File 'lib/google/apis/ces_v1/classes.rb', line 4064

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

Instance Attribute Details

#app_versionsArray<Google::Apis::CesV1::AppVersion>

The list of app versions. Corresponds to the JSON property appVersions



4056
4057
4058
# File 'lib/google/apis/ces_v1/classes.rb', line 4056

def app_versions
  @app_versions
end

#next_page_tokenString

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

Returns:

  • (String)


4062
4063
4064
# File 'lib/google/apis/ces_v1/classes.rb', line 4062

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4069
4070
4071
4072
# File 'lib/google/apis/ces_v1/classes.rb', line 4069

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