rv.data.WebFillTokenAndCookies */ class WebFillTokenAndCookies extends \Google\Protobuf\Internal\Message { /** * Generated from protobuf field repeated .rv.data.WebFillTokenAndCookies.Cookie cookies = 1; */ private $cookies; /** * Generated from protobuf field string token = 2; */ protected $token = ''; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type array<\Rv\Data\WebFillTokenAndCookies\Cookie>|\Google\Protobuf\Internal\RepeatedField $cookies * @type string $token * } */ public function __construct($data = NULL) { \GPBMetadata\ProCore::initOnce(); parent::__construct($data); } /** * Generated from protobuf field repeated .rv.data.WebFillTokenAndCookies.Cookie cookies = 1; * @return \Google\Protobuf\Internal\RepeatedField */ public function getCookies() { return $this->cookies; } /** * Generated from protobuf field repeated .rv.data.WebFillTokenAndCookies.Cookie cookies = 1; * @param array<\Rv\Data\WebFillTokenAndCookies\Cookie>|\Google\Protobuf\Internal\RepeatedField $var * @return $this */ public function setCookies($var) { $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Rv\Data\WebFillTokenAndCookies\Cookie::class); $this->cookies = $arr; return $this; } /** * Generated from protobuf field string token = 2; * @return string */ public function getToken() { return $this->token; } /** * Generated from protobuf field string token = 2; * @param string $var * @return $this */ public function setToken($var) { GPBUtil::checkString($var, True); $this->token = $var; return $this; } }