coordinate = $coordinate;
}
/**
* @return GridCoordinate
*/
public function getCoordinate()
{
return $this->coordinate;
}
/**
* @param string
*/
public function setData($data)
{
$this->data = $data;
}
/**
* @return string
*/
public function getData()
{
return $this->data;
}
/**
* @param string
*/
public function setDelimiter($delimiter)
{
$this->delimiter = $delimiter;
}
/**
* @return string
*/
public function getDelimiter()
{
return $this->delimiter;
}
/**
* @param bool
*/
public function setHtml($html)
{
$this->html = $html;
}
/**
* @return bool
*/
public function getHtml()
{
return $this->html;
}
/**
* @param string
*/
public function setType($type)
{
$this->type = $type;
}
/**
* @return string
*/
public function getType()
{
return $this->type;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(PasteDataRequest::class, 'Google_Service_Sheets_PasteDataRequest');