Class: Google::Apis::CesV1::ListChangelogsResponse
- Inherits:
-
Object
- Object
- Google::Apis::CesV1::ListChangelogsResponse
- 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.ListChangelogs.
Instance Attribute Summary collapse
-
#changelogs ⇒ Array<Google::Apis::CesV1::Changelog>
The list of changelogs.
-
#next_page_token ⇒ String
A token that can be sent as ListChangelogsRequest.page_token to retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListChangelogsResponse
constructor
A new instance of ListChangelogsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListChangelogsResponse
Returns a new instance of ListChangelogsResponse.
4122 4123 4124 |
# File 'lib/google/apis/ces_v1/classes.rb', line 4122 def initialize(**args) update!(**args) end |
Instance Attribute Details
#changelogs ⇒ Array<Google::Apis::CesV1::Changelog>
The list of changelogs.
Corresponds to the JSON property changelogs
4114 4115 4116 |
# File 'lib/google/apis/ces_v1/classes.rb', line 4114 def changelogs @changelogs end |
#next_page_token ⇒ String
A token that can be sent as ListChangelogsRequest.page_token to retrieve the
next page. Absence of this field indicates there are no subsequent pages.
Corresponds to the JSON property nextPageToken
4120 4121 4122 |
# File 'lib/google/apis/ces_v1/classes.rb', line 4120 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4127 4128 4129 4130 |
# File 'lib/google/apis/ces_v1/classes.rb', line 4127 def update!(**args) @changelogs = args[:changelogs] if args.key?(:changelogs) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |