class Google::Apis::FirebaserulesV1::ListReleasesResponse

The response for FirebaseRulesService.ListReleases.

Attributes

next_page_token[RW]

The pagination token to retrieve the next page of results. If the value is empty, no further results remain. Corresponds to the JSON property `nextPageToken` @return [String]

releases[RW]

List of `Release` instances. Corresponds to the JSON property `releases` @return [Array<Google::Apis::FirebaserulesV1::Release>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/firebaserules_v1/classes.rb, line 299
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/firebaserules_v1/classes.rb, line 304
def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @releases = args[:releases] if args.key?(:releases)
end