class Google::Apis::FirebasehostingV1beta1::ListVersionsResponse

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

versions[RW]

The list of versions, if any exist. Corresponds to the JSON property `versions` @return [Array<Google::Apis::FirebasehostingV1beta1::Version>]

Public Class Methods

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