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.



591
592
593
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 591

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



582
583
584
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 582

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)


589
590
591
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 589

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



596
597
598
599
# 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