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.



4122
4123
4124
# File 'lib/google/apis/ces_v1/classes.rb', line 4122

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:



4114
4115
4116
# File 'lib/google/apis/ces_v1/classes.rb', line 4114

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)


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