Class: Google::Apis::FirebasehostingV1beta1::ListVersionFilesResponse
- Inherits:
-
Object
- Object
- Google::Apis::FirebasehostingV1beta1::ListVersionFilesResponse
- 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
-
#files ⇒ Array<Google::Apis::FirebasehostingV1beta1::VersionFile>
The list of paths to the hashes of the files in the specified version.
-
#next_page_token ⇒ String
The pagination token, if more results exist beyond the ones in this response.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListVersionFilesResponse
constructor
A new instance of ListVersionFilesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListVersionFilesResponse
Returns a new instance of ListVersionFilesResponse.
590 591 592 |
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 590 def initialize(**args) update!(**args) end |
Instance Attribute Details
#files ⇒ Array<Google::Apis::FirebasehostingV1beta1::VersionFile>
The list of paths to the hashes of the files in the specified version.
Corresponds to the JSON property files
581 582 583 |
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 581 def files @files end |
#next_page_token ⇒ String
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
588 589 590 |
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 588 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
595 596 597 598 |
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 595 def update!(**args) @files = args[:files] if args.key?(:files) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |