auth.ValidateJwtTokenReq
 */
class ValidateJwtTokenReq extends \Google\Protobuf\Internal\Message
{
    /**
     * Generated from protobuf field string jwt_token = 1;
     */
    protected $jwt_token = '';
    /**
     * Constructor.
     *
     * @param array $data {
     *     Optional. Data for populating the Message object.
     *
     *     @type string $jwt_token
     * }
     */
    public function __construct($data = NULL) {
        \GRPC\GPBMetadata\Auth::initOnce();
        parent::__construct($data);
    }
    /**
     * Generated from protobuf field string jwt_token = 1;
     * @return string
     */
    public function getJwtToken()
    {
        return $this->jwt_token;
    }
    /**
     * Generated from protobuf field string jwt_token = 1;
     * @param string $var
     * @return $this
     */
    public function setJwtToken($var)
    {
        GPBUtil::checkString($var, True);
        $this->jwt_token = $var;
        return $this;
    }
}