Class: Google::Apis::FirebasehostingV1beta1::ListReleasesResponse
- Inherits:
-
Object
- Object
- Google::Apis::FirebasehostingV1beta1::ListReleasesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/firebasehosting_v1beta1/classes.rb,
generated/google/apis/firebasehosting_v1beta1/representations.rb,
generated/google/apis/firebasehosting_v1beta1/representations.rb
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
If there are additional releases remaining beyond the ones in this response, then supply this token in the next
list
call to continue with the next set of releases. -
#releases ⇒ Array<Google::Apis::FirebasehostingV1beta1::Release>
The list of hashes of files that still need to be uploaded, if any exist.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListReleasesResponse
constructor
A new instance of ListReleasesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListReleasesResponse
Returns a new instance of ListReleasesResponse
335 336 337 |
# File 'generated/google/apis/firebasehosting_v1beta1/classes.rb', line 335 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
If there are additional releases remaining beyond the ones in this
response, then supply this token in the next
list
call to continue with the next set
of releases.
Corresponds to the JSON property nextPageToken
328 329 330 |
# File 'generated/google/apis/firebasehosting_v1beta1/classes.rb', line 328 def next_page_token @next_page_token end |
#releases ⇒ Array<Google::Apis::FirebasehostingV1beta1::Release>
The list of hashes of files that still need to be uploaded, if any exist.
Corresponds to the JSON property releases
333 334 335 |
# File 'generated/google/apis/firebasehosting_v1beta1/classes.rb', line 333 def releases @releases end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
340 341 342 343 |
# File 'generated/google/apis/firebasehosting_v1beta1/classes.rb', line 340 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @releases = args[:releases] if args.key?(:releases) end |