connectorName = $connectorName;
}
/**
* @return string
*/
public function getConnectorName()
{
return $this->connectorName;
}
/**
* @param DebugOptions
*/
public function setDebugOptions(DebugOptions $debugOptions)
{
$this->debugOptions = $debugOptions;
}
/**
* @return DebugOptions
*/
public function getDebugOptions()
{
return $this->debugOptions;
}
/**
* @param string
*/
public function setQueue($queue)
{
$this->queue = $queue;
}
/**
* @return string
*/
public function getQueue()
{
return $this->queue;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(DeleteQueueItemsRequest::class, 'Google_Service_CloudSearch_DeleteQueueItemsRequest');