Class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaListTestCasesResponse
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaListTestCasesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/integrations_v1/classes.rb,
lib/google/apis/integrations_v1/representations.rb,
lib/google/apis/integrations_v1/representations.rb
Overview
Response for ListTestCases
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token, which can be sent as
page_token
to retrieve the next page. -
#test_cases ⇒ Array<Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaTestCase>
The test cases corresponding to the specified filter Corresponds to the JSON property
testCases
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaListTestCasesResponse
constructor
A new instance of GoogleCloudIntegrationsV1alphaListTestCasesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaListTestCasesResponse
Returns a new instance of GoogleCloudIntegrationsV1alphaListTestCasesResponse.
9330 9331 9332 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 9330 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
A token, which can be sent as page_token
to retrieve the next page. If this
field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
9323 9324 9325 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 9323 def next_page_token @next_page_token end |
#test_cases ⇒ Array<Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaTestCase>
The test cases corresponding to the specified filter
Corresponds to the JSON property testCases
9328 9329 9330 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 9328 def test_cases @test_cases end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9335 9336 9337 9338 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 9335 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @test_cases = args[:test_cases] if args.key?(:test_cases) end |