rv.data.ResolvedFeatureFlags
*/
class ResolvedFeatureFlags extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field bool content_store_staging_enabled = 1;
*/
protected $content_store_staging_enabled = false;
/**
* Generated from protobuf field bool staging_api_endpoint_enabled = 8;
*/
protected $staging_api_endpoint_enabled = false;
/**
* Generated from protobuf field bool pro_content_staging_enabled = 10;
*/
protected $pro_content_staging_enabled = false;
/**
* Generated from protobuf field bool core_networkapi_playlist = 11;
*/
protected $core_networkapi_playlist = false;
/**
* Generated from protobuf field bool core_networkapi_presentation = 12;
*/
protected $core_networkapi_presentation = false;
/**
* Generated from protobuf field bool endpoint_version_1_1_enabled = 13;
*/
protected $endpoint_version_1_1_enabled = false;
/**
* Generated from protobuf field bool core_client_sync = 15;
*/
protected $core_client_sync = false;
/**
* Generated from protobuf field bool in_app_notifications_enabled = 16;
*/
protected $in_app_notifications_enabled = false;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type bool $content_store_staging_enabled
* @type bool $staging_api_endpoint_enabled
* @type bool $pro_content_staging_enabled
* @type bool $core_networkapi_playlist
* @type bool $core_networkapi_presentation
* @type bool $endpoint_version_1_1_enabled
* @type bool $core_client_sync
* @type bool $in_app_notifications_enabled
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\ProCoreFeatureFlags::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field bool content_store_staging_enabled = 1;
* @return bool
*/
public function getContentStoreStagingEnabled()
{
return $this->content_store_staging_enabled;
}
/**
* Generated from protobuf field bool content_store_staging_enabled = 1;
* @param bool $var
* @return $this
*/
public function setContentStoreStagingEnabled($var)
{
GPBUtil::checkBool($var);
$this->content_store_staging_enabled = $var;
return $this;
}
/**
* Generated from protobuf field bool staging_api_endpoint_enabled = 8;
* @return bool
*/
public function getStagingApiEndpointEnabled()
{
return $this->staging_api_endpoint_enabled;
}
/**
* Generated from protobuf field bool staging_api_endpoint_enabled = 8;
* @param bool $var
* @return $this
*/
public function setStagingApiEndpointEnabled($var)
{
GPBUtil::checkBool($var);
$this->staging_api_endpoint_enabled = $var;
return $this;
}
/**
* Generated from protobuf field bool pro_content_staging_enabled = 10;
* @return bool
*/
public function getProContentStagingEnabled()
{
return $this->pro_content_staging_enabled;
}
/**
* Generated from protobuf field bool pro_content_staging_enabled = 10;
* @param bool $var
* @return $this
*/
public function setProContentStagingEnabled($var)
{
GPBUtil::checkBool($var);
$this->pro_content_staging_enabled = $var;
return $this;
}
/**
* Generated from protobuf field bool core_networkapi_playlist = 11;
* @return bool
*/
public function getCoreNetworkapiPlaylist()
{
return $this->core_networkapi_playlist;
}
/**
* Generated from protobuf field bool core_networkapi_playlist = 11;
* @param bool $var
* @return $this
*/
public function setCoreNetworkapiPlaylist($var)
{
GPBUtil::checkBool($var);
$this->core_networkapi_playlist = $var;
return $this;
}
/**
* Generated from protobuf field bool core_networkapi_presentation = 12;
* @return bool
*/
public function getCoreNetworkapiPresentation()
{
return $this->core_networkapi_presentation;
}
/**
* Generated from protobuf field bool core_networkapi_presentation = 12;
* @param bool $var
* @return $this
*/
public function setCoreNetworkapiPresentation($var)
{
GPBUtil::checkBool($var);
$this->core_networkapi_presentation = $var;
return $this;
}
/**
* Generated from protobuf field bool endpoint_version_1_1_enabled = 13;
* @return bool
*/
public function getEndpointVersion11Enabled()
{
return $this->endpoint_version_1_1_enabled;
}
/**
* Generated from protobuf field bool endpoint_version_1_1_enabled = 13;
* @param bool $var
* @return $this
*/
public function setEndpointVersion11Enabled($var)
{
GPBUtil::checkBool($var);
$this->endpoint_version_1_1_enabled = $var;
return $this;
}
/**
* Generated from protobuf field bool core_client_sync = 15;
* @return bool
*/
public function getCoreClientSync()
{
return $this->core_client_sync;
}
/**
* Generated from protobuf field bool core_client_sync = 15;
* @param bool $var
* @return $this
*/
public function setCoreClientSync($var)
{
GPBUtil::checkBool($var);
$this->core_client_sync = $var;
return $this;
}
/**
* Generated from protobuf field bool in_app_notifications_enabled = 16;
* @return bool
*/
public function getInAppNotificationsEnabled()
{
return $this->in_app_notifications_enabled;
}
/**
* Generated from protobuf field bool in_app_notifications_enabled = 16;
* @param bool $var
* @return $this
*/
public function setInAppNotificationsEnabled($var)
{
GPBUtil::checkBool($var);
$this->in_app_notifications_enabled = $var;
return $this;
}
}