JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "ToolResultsStep.php"
Full Path: /home/palsarh/web/palsarh.in/public_html/vendor/google/apiclient-services/src/Testing/ToolResultsStep.php
File size: 2.35 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Testing;
class ToolResultsStep extends \Google\Model
{
/**
* Output only. A tool results execution ID.
*
* @var string
*/
public $executionId;
/**
* Output only. A tool results history ID.
*
* @var string
*/
public $historyId;
/**
* Output only. The cloud project that owns the tool results step.
*
* @var string
*/
public $projectId;
/**
* Output only. A tool results step ID.
*
* @var string
*/
public $stepId;
/**
* Output only. A tool results execution ID.
*
* @param string $executionId
*/
public function setExecutionId($executionId)
{
$this->executionId = $executionId;
}
/**
* @return string
*/
public function getExecutionId()
{
return $this->executionId;
}
/**
* Output only. A tool results history ID.
*
* @param string $historyId
*/
public function setHistoryId($historyId)
{
$this->historyId = $historyId;
}
/**
* @return string
*/
public function getHistoryId()
{
return $this->historyId;
}
/**
* Output only. The cloud project that owns the tool results step.
*
* @param string $projectId
*/
public function setProjectId($projectId)
{
$this->projectId = $projectId;
}
/**
* @return string
*/
public function getProjectId()
{
return $this->projectId;
}
/**
* Output only. A tool results step ID.
*
* @param string $stepId
*/
public function setStepId($stepId)
{
$this->stepId = $stepId;
}
/**
* @return string
*/
public function getStepId()
{
return $this->stepId;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ToolResultsStep::class, 'Google_Service_Testing_ToolResultsStep');