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.



618
619
620
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 618

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)


611
612
613
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 611

def next_page_token
  @next_page_token
end

#release_testsArray<Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaReleaseTest>

The tests listed. Corresponds to the JSON property releaseTests



616
617
618
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 616

def release_tests
  @release_tests
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



623
624
625
626
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 623

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