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