class Google::Apis::FirebasehostingV1beta1::ListVersionFilesResponse

Attributes

files[RW]

The list of paths to the hashes of the files in the specified version. Corresponds to the JSON property `files` @return [Array<Google::Apis::FirebasehostingV1beta1::VersionFile>]

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 `ListVersionFiles`. Page tokens are short-lived and should not be stored. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/firebasehosting_v1beta1/classes.rb, line 591
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 596
def update!(**args)
  @files = args[:files] if args.key?(:files)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end