Class: Google::Apis::CesV1::ListChangelogsResponse

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListChangelogsResponse

Returns a new instance of ListChangelogsResponse.



5734
5735
5736
# File 'lib/google/apis/ces_v1/classes.rb', line 5734

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

Instance Attribute Details

#changelogsArray<Google::Apis::CesV1::Changelog>

The list of changelogs. Corresponds to the JSON property changelogs

Returns:



5726
5727
5728
# File 'lib/google/apis/ces_v1/classes.rb', line 5726

def changelogs
  @changelogs
end

#next_page_tokenString

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

Returns:

  • (String)


5732
5733
5734
# File 'lib/google/apis/ces_v1/classes.rb', line 5732

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5739
5740
5741
5742
# File 'lib/google/apis/ces_v1/classes.rb', line 5739

def update!(**args)
  @changelogs = args[:changelogs] if args.key?(:changelogs)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end