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.
1221 1222 1223 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 1221 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
1214 1215 1216 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 1214 def next_page_token @next_page_token end |
#release_tests ⇒ Array<Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaReleaseTest>
The tests listed.
Corresponds to the JSON property releaseTests
1219 1220 1221 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 1219 def release_tests @release_tests end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1226 1227 1228 1229 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 1226 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 |