content = $content;
}
/**
* @return string
*/
public function getContent()
{
return $this->content;
}
/**
* @param string
*/
public function setFileType($fileType)
{
$this->fileType = $fileType;
}
/**
* @return string
*/
public function getFileType()
{
return $this->fileType;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(FileContentBuffer::class, 'Google_Service_Compute_FileContentBuffer');