class Google::Apis::FirebasehostingV1beta1::ListReleasesResponse

Attributes

next_page_token[RW]

The pagination token, if more results exist beyond the ones in this response. Include this token in your next call to `ListReleases`. Page tokens are short- lived and should not be stored. Corresponds to the JSON property `nextPageToken` @return [String]

releases[RW]

The list of hashes of files that still need to be uploaded, if any exist. Corresponds to the JSON property `releases` @return [Array<Google::Apis::FirebasehostingV1beta1::Release>]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

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