Class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaListTestCaseExecutionsResponse

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

Instance Method Summary collapse

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

#executionsArray<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_tokenString

The token used to retrieve the next page results. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


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