registration.core.DownloadBible
*/
class DownloadBible extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field string bible_id = 1;
*/
protected $bible_id = '';
/**
* Generated from protobuf field string filename = 2;
*/
protected $filename = '';
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type string $bible_id
* @type string $filename
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Registration::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field string bible_id = 1;
* @return string
*/
public function getBibleId()
{
return $this->bible_id;
}
/**
* Generated from protobuf field string bible_id = 1;
* @param string $var
* @return $this
*/
public function setBibleId($var)
{
GPBUtil::checkString($var, True);
$this->bible_id = $var;
return $this;
}
/**
* Generated from protobuf field string filename = 2;
* @return string
*/
public function getFilename()
{
return $this->filename;
}
/**
* Generated from protobuf field string filename = 2;
* @param string $var
* @return $this
*/
public function setFilename($var)
{
GPBUtil::checkString($var, True);
$this->filename = $var;
return $this;
}
}