class Google::Apis::FirebasehostingV1beta1::ListSitesResponse
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 `ListSites`. Page tokens are short- lived and should not be stored. Corresponds to the JSON property `nextPageToken` @return [String]
sites[RW]
A list of Site
objects associated with the specified Firebase project. Corresponds to the JSON property `sites` @return [Array<Google::Apis::FirebasehostingV1beta1::Site>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/firebasehosting_v1beta1/classes.rb, line 564 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 569 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @sites = args[:sites] if args.key?(:sites) end