bundles = $bundles;
}
/**
* @return DerivedSource[]
*/
public function getBundles()
{
return $this->bundles;
}
/**
* @param string
*/
public function setOutcome($outcome)
{
$this->outcome = $outcome;
}
/**
* @return string
*/
public function getOutcome()
{
return $this->outcome;
}
/**
* @param SourceSplitShard[]
*/
public function setShards($shards)
{
$this->shards = $shards;
}
/**
* @return SourceSplitShard[]
*/
public function getShards()
{
return $this->shards;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(SourceSplitResponse::class, 'Google_Service_Dataflow_SourceSplitResponse');