Class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaListReleaseTestsResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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_tokenString

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

Returns:

  • (String)


880
881
882
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 880

def next_page_token
  @next_page_token
end

#release_testsArray<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