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.
887 888 889 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 887 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
880 881 882 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 880 def next_page_token @next_page_token end |
#release_tests ⇒ Array<Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaReleaseTest>
The tests listed.
Corresponds to the JSON property releaseTests
885 886 887 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 885 def release_tests @release_tests end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
892 893 894 895 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 892 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 |