Class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaListReleaseTestsResponse
- Inherits:
-
Object
- Object
- Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaListReleaseTestsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/firebaseappdistribution_v1alpha/classes.rb,
lib/google/apis/firebaseappdistribution_v1alpha/representations.rb,
lib/google/apis/firebaseappdistribution_v1alpha/representations.rb
Overview
The response message for ListReleaseTests.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A short-lived token, which can be sent as
pageTokento retrieve the next page. -
#release_tests ⇒ Array<Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaReleaseTest>
The tests listed.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleFirebaseAppdistroV1alphaListReleaseTestsResponse
constructor
A new instance of GoogleFirebaseAppdistroV1alphaListReleaseTestsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleFirebaseAppdistroV1alphaListReleaseTestsResponse
Returns a new instance of GoogleFirebaseAppdistroV1alphaListReleaseTestsResponse.
587 588 589 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 587 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
A short-lived token, which can be sent as pageToken to retrieve the next
page. If this field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
580 581 582 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 580 def next_page_token @next_page_token end |
#release_tests ⇒ Array<Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaReleaseTest>
The tests listed.
Corresponds to the JSON property releaseTests
585 586 587 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 585 def release_tests @release_tests end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
592 593 594 595 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 592 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @release_tests = args[:release_tests] if args.key?(:release_tests) end |