rv.data.Recording.Stream.Destination */ class Destination extends \Google\Protobuf\Internal\Message { protected $Destination; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type \Rv\Data\Recording\Stream\DiskDestination $disk * @type \Rv\Data\Recording\Stream\RTMPDestination $rtmp * @type \Rv\Data\Recording\Stream\Destination\Resi $resi * } */ public function __construct($data = NULL) { \GPBMetadata\Recording::initOnce(); parent::__construct($data); } /** * Generated from protobuf field .rv.data.Recording.Stream.DiskDestination disk = 1; * @return \Rv\Data\Recording\Stream\DiskDestination|null */ public function getDisk() { return $this->readOneof(1); } public function hasDisk() { return $this->hasOneof(1); } /** * Generated from protobuf field .rv.data.Recording.Stream.DiskDestination disk = 1; * @param \Rv\Data\Recording\Stream\DiskDestination $var * @return $this */ public function setDisk($var) { GPBUtil::checkMessage($var, \Rv\Data\Recording\Stream\DiskDestination::class); $this->writeOneof(1, $var); return $this; } /** * Generated from protobuf field .rv.data.Recording.Stream.RTMPDestination rtmp = 2; * @return \Rv\Data\Recording\Stream\RTMPDestination|null */ public function getRtmp() { return $this->readOneof(2); } public function hasRtmp() { return $this->hasOneof(2); } /** * Generated from protobuf field .rv.data.Recording.Stream.RTMPDestination rtmp = 2; * @param \Rv\Data\Recording\Stream\RTMPDestination $var * @return $this */ public function setRtmp($var) { GPBUtil::checkMessage($var, \Rv\Data\Recording\Stream\RTMPDestination::class); $this->writeOneof(2, $var); return $this; } /** * Generated from protobuf field .rv.data.Recording.Stream.Destination.Resi resi = 3; * @return \Rv\Data\Recording\Stream\Destination\Resi|null */ public function getResi() { return $this->readOneof(3); } public function hasResi() { return $this->hasOneof(3); } /** * Generated from protobuf field .rv.data.Recording.Stream.Destination.Resi resi = 3; * @param \Rv\Data\Recording\Stream\Destination\Resi $var * @return $this */ public function setResi($var) { GPBUtil::checkMessage($var, \Rv\Data\Recording\Stream\Destination\Resi::class); $this->writeOneof(3, $var); return $this; } /** * @return string */ public function getDestination() { return $this->whichOneof("Destination"); } }