key = $key;
}
/**
* @return string
*/
public function getKey()
{
return $this->key;
}
/**
* @param int
*/
public function setMode($mode)
{
$this->mode = $mode;
}
/**
* @return int
*/
public function getMode()
{
return $this->mode;
}
/**
* @param string
*/
public function setPath($path)
{
$this->path = $path;
}
/**
* @return string
*/
public function getPath()
{
return $this->path;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(KeyToPath::class, 'Google_Service_CloudRun_KeyToPath');