Class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaListTestCaseExecutionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaListTestCaseExecutionsResponse
- 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
The response for listing the functional test execution data.
Instance Attribute Summary collapse
-
#executions ⇒ Array<Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaExecution>
The detailed information of requested executions Corresponds to the JSON property
executions
. -
#next_page_token ⇒ String
The token used to retrieve the next page results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaListTestCaseExecutionsResponse
constructor
A new instance of GoogleCloudIntegrationsV1alphaListTestCaseExecutionsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaListTestCaseExecutionsResponse
Returns a new instance of GoogleCloudIntegrationsV1alphaListTestCaseExecutionsResponse.
9304 9305 9306 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 9304 def initialize(**args) update!(**args) end |
Instance Attribute Details
#executions ⇒ Array<Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaExecution>
The detailed information of requested executions
Corresponds to the JSON property executions
9297 9298 9299 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 9297 def executions @executions end |
#next_page_token ⇒ String
The token used to retrieve the next page results.
Corresponds to the JSON property nextPageToken
9302 9303 9304 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 9302 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9309 9310 9311 9312 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 9309 def update!(**args) @executions = args[:executions] if args.key?(:executions) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |