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.
4762 4763 4764 |
# File 'lib/google/apis/ces_v1/classes.rb', line 4762 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
4754 4755 4756 |
# File 'lib/google/apis/ces_v1/classes.rb', line 4754 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
4760 4761 4762 |
# File 'lib/google/apis/ces_v1/classes.rb', line 4760 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4767 4768 4769 4770 |
# File 'lib/google/apis/ces_v1/classes.rb', line 4767 def update!(**args) @changelogs = args[:changelogs] if args.key?(:changelogs) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |