matchCase = $matchCase;
}
/**
* @return bool
*/
public function getMatchCase()
{
return $this->matchCase;
}
/**
* @param string
*/
public function setText($text)
{
$this->text = $text;
}
/**
* @return string
*/
public function getText()
{
return $this->text;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(SubstringMatchCriteria::class, 'Google_Service_Docs_SubstringMatchCriteria');