JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "GoogleCloudIntegrationsV1alphaExecutionSnapshotExecutionSnapshotMetadata.php"
Full Path: /home/palsarh/web/palsarh.in/public_html/vendor/google/apiclient-services/src/Integrations/GoogleCloudIntegrationsV1alphaExecutionSnapshotExecutionSnapshotMetadata.php
File size: 4.74 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\Integrations;
class GoogleCloudIntegrationsV1alphaExecutionSnapshotExecutionSnapshotMetadata extends \Google\Collection
{
protected $collection_key = 'ancestorTaskNumbers';
/**
* Ancestor iteration number for the task(it will only be non-empty if the
* task is under 'private workflow')
*
* @var string[]
*/
public $ancestorIterationNumbers;
/**
* Ancestor task number for the task(it will only be non-empty if the task is
* under 'private workflow')
*
* @var string[]
*/
public $ancestorTaskNumbers;
/**
* the execution attempt number this snapshot belongs to.
*
* @var int
*/
public $executionAttempt;
/**
* The direct integration which the event execution snapshots belongs to
*
* @var string
*/
public $integrationName;
/**
* the task name associated with this snapshot.
*
* @var string
*/
public $task;
/**
* the task attempt number this snapshot belongs to.
*
* @var int
*/
public $taskAttempt;
/**
* the task label associated with this snapshot. Could be empty.
*
* @var string
*/
public $taskLabel;
/**
* The task number associated with this snapshot.
*
* @var string
*/
public $taskNumber;
/**
* Ancestor iteration number for the task(it will only be non-empty if the
* task is under 'private workflow')
*
* @param string[] $ancestorIterationNumbers
*/
public function setAncestorIterationNumbers($ancestorIterationNumbers)
{
$this->ancestorIterationNumbers = $ancestorIterationNumbers;
}
/**
* @return string[]
*/
public function getAncestorIterationNumbers()
{
return $this->ancestorIterationNumbers;
}
/**
* Ancestor task number for the task(it will only be non-empty if the task is
* under 'private workflow')
*
* @param string[] $ancestorTaskNumbers
*/
public function setAncestorTaskNumbers($ancestorTaskNumbers)
{
$this->ancestorTaskNumbers = $ancestorTaskNumbers;
}
/**
* @return string[]
*/
public function getAncestorTaskNumbers()
{
return $this->ancestorTaskNumbers;
}
/**
* the execution attempt number this snapshot belongs to.
*
* @param int $executionAttempt
*/
public function setExecutionAttempt($executionAttempt)
{
$this->executionAttempt = $executionAttempt;
}
/**
* @return int
*/
public function getExecutionAttempt()
{
return $this->executionAttempt;
}
/**
* The direct integration which the event execution snapshots belongs to
*
* @param string $integrationName
*/
public function setIntegrationName($integrationName)
{
$this->integrationName = $integrationName;
}
/**
* @return string
*/
public function getIntegrationName()
{
return $this->integrationName;
}
/**
* the task name associated with this snapshot.
*
* @param string $task
*/
public function setTask($task)
{
$this->task = $task;
}
/**
* @return string
*/
public function getTask()
{
return $this->task;
}
/**
* the task attempt number this snapshot belongs to.
*
* @param int $taskAttempt
*/
public function setTaskAttempt($taskAttempt)
{
$this->taskAttempt = $taskAttempt;
}
/**
* @return int
*/
public function getTaskAttempt()
{
return $this->taskAttempt;
}
/**
* the task label associated with this snapshot. Could be empty.
*
* @param string $taskLabel
*/
public function setTaskLabel($taskLabel)
{
$this->taskLabel = $taskLabel;
}
/**
* @return string
*/
public function getTaskLabel()
{
return $this->taskLabel;
}
/**
* The task number associated with this snapshot.
*
* @param string $taskNumber
*/
public function setTaskNumber($taskNumber)
{
$this->taskNumber = $taskNumber;
}
/**
* @return string
*/
public function getTaskNumber()
{
return $this->taskNumber;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudIntegrationsV1alphaExecutionSnapshotExecutionSnapshotMetadata::class, 'Google_Service_Integrations_GoogleCloudIntegrationsV1alphaExecutionSnapshotExecutionSnapshotMetadata');