Class: Google::Apis::FirebasehostingV1beta1::ListVersionFilesResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/firebasehosting_v1beta1/classes.rb,
lib/google/apis/firebasehosting_v1beta1/representations.rb,
lib/google/apis/firebasehosting_v1beta1/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListVersionFilesResponse

Returns a new instance of ListVersionFilesResponse.



1115
1116
1117
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 1115

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

Instance Attribute Details

#filesArray<Google::Apis::FirebasehostingV1beta1::VersionFile>

The list of paths to the hashes of the files in the specified version. Corresponds to the JSON property files



1106
1107
1108
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 1106

def files
  @files
end

#next_page_tokenString

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

Returns:

  • (String)


1113
1114
1115
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 1113

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1120
1121
1122
1123
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 1120

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