google.api.AuthorizationConfig */ class AuthorizationConfig extends \Google\Protobuf\Internal\Message { /** * The name of the authorization provider, such as * firebaserules.googleapis.com. * * Generated from protobuf field string provider = 1; */ private $provider = ''; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type string $provider * The name of the authorization provider, such as * firebaserules.googleapis.com. * } */ public function __construct($data = NULL) { \GPBMetadata\Google\Api\Experimental\AuthorizationConfig::initOnce(); parent::__construct($data); } /** * The name of the authorization provider, such as * firebaserules.googleapis.com. * * Generated from protobuf field string provider = 1; * @return string */ public function getProvider() { return $this->provider; } /** * The name of the authorization provider, such as * firebaserules.googleapis.com. * * Generated from protobuf field string provider = 1; * @param string $var * @return $this */ public function setProvider($var) { GPBUtil::checkString($var, True); $this->provider = $var; return $this; } }