proto.api.OrderContractDetail
*/
class OrderContractDetail extends \Google\Protobuf\Internal\Message
{
/**
* 合同内容
*
* Generated from protobuf field string contract_content = 1;
*/
protected $contract_content = '';
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type string $contract_content
* 合同内容
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Api\EntOrderContract::initOnce();
parent::__construct($data);
}
/**
* 合同内容
*
* Generated from protobuf field string contract_content = 1;
* @return string
*/
public function getContractContent()
{
return $this->contract_content;
}
/**
* 合同内容
*
* Generated from protobuf field string contract_content = 1;
* @param string $var
* @return $this
*/
public function setContractContent($var)
{
GPBUtil::checkString($var, True);
$this->contract_content = $var;
return $this;
}
}