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