Ydb.Discovery.WhoAmIResult */ class WhoAmIResult extends \Google\Protobuf\Internal\Message { /** * User SID (Security ID) * * Generated from protobuf field string user = 1; */ protected $user = ''; /** * List of group SIDs (Security IDs) for the user * * Generated from protobuf field repeated string groups = 2; */ private $groups; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type string $user * User SID (Security ID) * @type array|\Google\Protobuf\Internal\RepeatedField $groups * List of group SIDs (Security IDs) for the user * } */ public function __construct($data = NULL) { \GPBMetadata\Protos\YdbDiscovery::initOnce(); parent::__construct($data); } /** * User SID (Security ID) * * Generated from protobuf field string user = 1; * @return string */ public function getUser() { return $this->user; } /** * User SID (Security ID) * * Generated from protobuf field string user = 1; * @param string $var * @return $this */ public function setUser($var) { GPBUtil::checkString($var, True); $this->user = $var; return $this; } /** * List of group SIDs (Security IDs) for the user * * Generated from protobuf field repeated string groups = 2; * @return \Google\Protobuf\Internal\RepeatedField */ public function getGroups() { return $this->groups; } /** * List of group SIDs (Security IDs) for the user * * Generated from protobuf field repeated string groups = 2; * @param array|\Google\Protobuf\Internal\RepeatedField $var * @return $this */ public function setGroups($var) { $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::STRING); $this->groups = $arr; return $this; } }