rv.data.PCOData */ class PCOData extends \Google\Protobuf\Internal\Message { /** * Generated from protobuf field string service_type_id = 2; */ protected $service_type_id = ''; /** * Generated from protobuf field string plan_id = 3; */ protected $plan_id = ''; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type string $service_type_id * @type string $plan_id * } */ public function __construct($data = NULL) { \GPBMetadata\ProCore::initOnce(); parent::__construct($data); } /** * Generated from protobuf field string service_type_id = 2; * @return string */ public function getServiceTypeId() { return $this->service_type_id; } /** * Generated from protobuf field string service_type_id = 2; * @param string $var * @return $this */ public function setServiceTypeId($var) { GPBUtil::checkString($var, True); $this->service_type_id = $var; return $this; } /** * Generated from protobuf field string plan_id = 3; * @return string */ public function getPlanId() { return $this->plan_id; } /** * Generated from protobuf field string plan_id = 3; * @param string $var * @return $this */ public function setPlanId($var) { GPBUtil::checkString($var, True); $this->plan_id = $var; return $this; } }