code
stringlengths 17
296k
| docstring
stringlengths 30
30.3k
| func_name
stringlengths 1
89
| language
stringclasses 1
value | repo
stringlengths 7
63
| path
stringlengths 7
153
| url
stringlengths 51
209
| license
stringclasses 4
values |
---|---|---|---|---|---|---|---|
public function getFileType()
{
return $this->file_type;
} | (optional)
Generated from protobuf field <code>.livekit.EncodedFileType file_type = 1;</code>
@return int | getFileType | php | agence104/livekit-server-sdk-php | src/proto/Livekit/EncodedFileOutput.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/EncodedFileOutput.php | Apache-2.0 |
public function setFileType($var)
{
GPBUtil::checkEnum($var, \Livekit\EncodedFileType::class);
$this->file_type = $var;
return $this;
} | (optional)
Generated from protobuf field <code>.livekit.EncodedFileType file_type = 1;</code>
@param int $var
@return $this | setFileType | php | agence104/livekit-server-sdk-php | src/proto/Livekit/EncodedFileOutput.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/EncodedFileOutput.php | Apache-2.0 |
public function getFilepath()
{
return $this->filepath;
} | see egress docs for templating (default {room_name}-{time})
Generated from protobuf field <code>string filepath = 2;</code>
@return string | getFilepath | php | agence104/livekit-server-sdk-php | src/proto/Livekit/EncodedFileOutput.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/EncodedFileOutput.php | Apache-2.0 |
public function setFilepath($var)
{
GPBUtil::checkString($var, True);
$this->filepath = $var;
return $this;
} | see egress docs for templating (default {room_name}-{time})
Generated from protobuf field <code>string filepath = 2;</code>
@param string $var
@return $this | setFilepath | php | agence104/livekit-server-sdk-php | src/proto/Livekit/EncodedFileOutput.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/EncodedFileOutput.php | Apache-2.0 |
public function getDisableManifest()
{
return $this->disable_manifest;
} | disable upload of manifest file (default false)
Generated from protobuf field <code>bool disable_manifest = 6;</code>
@return bool | getDisableManifest | php | agence104/livekit-server-sdk-php | src/proto/Livekit/EncodedFileOutput.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/EncodedFileOutput.php | Apache-2.0 |
public function setDisableManifest($var)
{
GPBUtil::checkBool($var);
$this->disable_manifest = $var;
return $this;
} | disable upload of manifest file (default false)
Generated from protobuf field <code>bool disable_manifest = 6;</code>
@param bool $var
@return $this | setDisableManifest | php | agence104/livekit-server-sdk-php | src/proto/Livekit/EncodedFileOutput.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/EncodedFileOutput.php | Apache-2.0 |
public function getS3()
{
return $this->readOneof(3);
} | Generated from protobuf field <code>.livekit.S3Upload s3 = 3;</code>
@return \Livekit\S3Upload|null | getS3 | php | agence104/livekit-server-sdk-php | src/proto/Livekit/EncodedFileOutput.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/EncodedFileOutput.php | Apache-2.0 |
public function setS3($var)
{
GPBUtil::checkMessage($var, \Livekit\S3Upload::class);
$this->writeOneof(3, $var);
return $this;
} | Generated from protobuf field <code>.livekit.S3Upload s3 = 3;</code>
@param \Livekit\S3Upload $var
@return $this | setS3 | php | agence104/livekit-server-sdk-php | src/proto/Livekit/EncodedFileOutput.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/EncodedFileOutput.php | Apache-2.0 |
public function getGcp()
{
return $this->readOneof(4);
} | Generated from protobuf field <code>.livekit.GCPUpload gcp = 4;</code>
@return \Livekit\GCPUpload|null | getGcp | php | agence104/livekit-server-sdk-php | src/proto/Livekit/EncodedFileOutput.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/EncodedFileOutput.php | Apache-2.0 |
public function setGcp($var)
{
GPBUtil::checkMessage($var, \Livekit\GCPUpload::class);
$this->writeOneof(4, $var);
return $this;
} | Generated from protobuf field <code>.livekit.GCPUpload gcp = 4;</code>
@param \Livekit\GCPUpload $var
@return $this | setGcp | php | agence104/livekit-server-sdk-php | src/proto/Livekit/EncodedFileOutput.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/EncodedFileOutput.php | Apache-2.0 |
public function getAzure()
{
return $this->readOneof(5);
} | Generated from protobuf field <code>.livekit.AzureBlobUpload azure = 5;</code>
@return \Livekit\AzureBlobUpload|null | getAzure | php | agence104/livekit-server-sdk-php | src/proto/Livekit/EncodedFileOutput.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/EncodedFileOutput.php | Apache-2.0 |
public function setAzure($var)
{
GPBUtil::checkMessage($var, \Livekit\AzureBlobUpload::class);
$this->writeOneof(5, $var);
return $this;
} | Generated from protobuf field <code>.livekit.AzureBlobUpload azure = 5;</code>
@param \Livekit\AzureBlobUpload $var
@return $this | setAzure | php | agence104/livekit-server-sdk-php | src/proto/Livekit/EncodedFileOutput.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/EncodedFileOutput.php | Apache-2.0 |
public function getAliOSS()
{
return $this->readOneof(7);
} | Generated from protobuf field <code>.livekit.AliOSSUpload aliOSS = 7;</code>
@return \Livekit\AliOSSUpload|null | getAliOSS | php | agence104/livekit-server-sdk-php | src/proto/Livekit/EncodedFileOutput.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/EncodedFileOutput.php | Apache-2.0 |
public function setAliOSS($var)
{
GPBUtil::checkMessage($var, \Livekit\AliOSSUpload::class);
$this->writeOneof(7, $var);
return $this;
} | Generated from protobuf field <code>.livekit.AliOSSUpload aliOSS = 7;</code>
@param \Livekit\AliOSSUpload $var
@return $this | setAliOSS | php | agence104/livekit-server-sdk-php | src/proto/Livekit/EncodedFileOutput.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/EncodedFileOutput.php | Apache-2.0 |
public function getAgentName()
{
return $this->agent_name;
} | Generated from protobuf field <code>string agent_name = 1;</code>
@return string | getAgentName | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RoomAgentDispatch.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RoomAgentDispatch.php | Apache-2.0 |
public function setAgentName($var)
{
GPBUtil::checkString($var, True);
$this->agent_name = $var;
return $this;
} | Generated from protobuf field <code>string agent_name = 1;</code>
@param string $var
@return $this | setAgentName | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RoomAgentDispatch.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RoomAgentDispatch.php | Apache-2.0 |
public function getMetadata()
{
return $this->metadata;
} | Generated from protobuf field <code>string metadata = 2;</code>
@return string | getMetadata | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RoomAgentDispatch.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RoomAgentDispatch.php | Apache-2.0 |
public function setMetadata($var)
{
GPBUtil::checkString($var, True);
$this->metadata = $var;
return $this;
} | Generated from protobuf field <code>string metadata = 2;</code>
@param string $var
@return $this | setMetadata | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RoomAgentDispatch.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RoomAgentDispatch.php | Apache-2.0 |
public function getPage()
{
return $this->page;
} | Generated from protobuf field <code>.livekit.Pagination page = 3;</code>
@return \Livekit\Pagination|null | getPage | php | agence104/livekit-server-sdk-php | src/proto/Livekit/ListSIPDispatchRuleRequest.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/ListSIPDispatchRuleRequest.php | Apache-2.0 |
public function setPage($var)
{
GPBUtil::checkMessage($var, \Livekit\Pagination::class);
$this->page = $var;
return $this;
} | Generated from protobuf field <code>.livekit.Pagination page = 3;</code>
@param \Livekit\Pagination $var
@return $this | setPage | php | agence104/livekit-server-sdk-php | src/proto/Livekit/ListSIPDispatchRuleRequest.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/ListSIPDispatchRuleRequest.php | Apache-2.0 |
public function getDispatchRuleIds()
{
return $this->dispatch_rule_ids;
} | Rule IDs to list. If this option is set, the response will contains rules in the same order.
If any of the rules is missing, a nil item in that position will be sent in the response.
Generated from protobuf field <code>repeated string dispatch_rule_ids = 1;</code>
@return \Google\Protobuf\Internal\RepeatedField | getDispatchRuleIds | php | agence104/livekit-server-sdk-php | src/proto/Livekit/ListSIPDispatchRuleRequest.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/ListSIPDispatchRuleRequest.php | Apache-2.0 |
public function setDispatchRuleIds($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::STRING);
$this->dispatch_rule_ids = $arr;
return $this;
} | Rule IDs to list. If this option is set, the response will contains rules in the same order.
If any of the rules is missing, a nil item in that position will be sent in the response.
Generated from protobuf field <code>repeated string dispatch_rule_ids = 1;</code>
@param string[]|\Google\Protobuf\Internal\RepeatedField $var
@return $this | setDispatchRuleIds | php | agence104/livekit-server-sdk-php | src/proto/Livekit/ListSIPDispatchRuleRequest.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/ListSIPDispatchRuleRequest.php | Apache-2.0 |
public function getTrunkIds()
{
return $this->trunk_ids;
} | Only list rules that contain one of the Trunk IDs, including wildcard rules.
Generated from protobuf field <code>repeated string trunk_ids = 2;</code>
@return \Google\Protobuf\Internal\RepeatedField | getTrunkIds | php | agence104/livekit-server-sdk-php | src/proto/Livekit/ListSIPDispatchRuleRequest.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/ListSIPDispatchRuleRequest.php | Apache-2.0 |
public function setTrunkIds($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::STRING);
$this->trunk_ids = $arr;
return $this;
} | Only list rules that contain one of the Trunk IDs, including wildcard rules.
Generated from protobuf field <code>repeated string trunk_ids = 2;</code>
@param string[]|\Google\Protobuf\Internal\RepeatedField $var
@return $this | setTrunkIds | php | agence104/livekit-server-sdk-php | src/proto/Livekit/ListSIPDispatchRuleRequest.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/ListSIPDispatchRuleRequest.php | Apache-2.0 |
public function getCode()
{
return $this->code;
} | Generated from protobuf field <code>uint32 code = 3;</code>
@return int | getCode | php | agence104/livekit-server-sdk-php | src/proto/Livekit/SipDTMF.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/SipDTMF.php | Apache-2.0 |
public function setCode($var)
{
GPBUtil::checkUint32($var);
$this->code = $var;
return $this;
} | Generated from protobuf field <code>uint32 code = 3;</code>
@param int $var
@return $this | setCode | php | agence104/livekit-server-sdk-php | src/proto/Livekit/SipDTMF.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/SipDTMF.php | Apache-2.0 |
public function getDigit()
{
return $this->digit;
} | Generated from protobuf field <code>string digit = 4;</code>
@return string | getDigit | php | agence104/livekit-server-sdk-php | src/proto/Livekit/SipDTMF.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/SipDTMF.php | Apache-2.0 |
public function setDigit($var)
{
GPBUtil::checkString($var, True);
$this->digit = $var;
return $this;
} | Generated from protobuf field <code>string digit = 4;</code>
@param string $var
@return $this | setDigit | php | agence104/livekit-server-sdk-php | src/proto/Livekit/SipDTMF.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/SipDTMF.php | Apache-2.0 |
public function getRoomName()
{
return $this->room_name;
} | required
Generated from protobuf field <code>string room_name = 1;</code>
@return string | getRoomName | php | agence104/livekit-server-sdk-php | src/proto/Livekit/ParticipantEgressRequest.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/ParticipantEgressRequest.php | Apache-2.0 |
public function setRoomName($var)
{
GPBUtil::checkString($var, True);
$this->room_name = $var;
return $this;
} | required
Generated from protobuf field <code>string room_name = 1;</code>
@param string $var
@return $this | setRoomName | php | agence104/livekit-server-sdk-php | src/proto/Livekit/ParticipantEgressRequest.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/ParticipantEgressRequest.php | Apache-2.0 |
public function getIdentity()
{
return $this->identity;
} | required
Generated from protobuf field <code>string identity = 2;</code>
@return string | getIdentity | php | agence104/livekit-server-sdk-php | src/proto/Livekit/ParticipantEgressRequest.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/ParticipantEgressRequest.php | Apache-2.0 |
public function setIdentity($var)
{
GPBUtil::checkString($var, True);
$this->identity = $var;
return $this;
} | required
Generated from protobuf field <code>string identity = 2;</code>
@param string $var
@return $this | setIdentity | php | agence104/livekit-server-sdk-php | src/proto/Livekit/ParticipantEgressRequest.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/ParticipantEgressRequest.php | Apache-2.0 |
public function getScreenShare()
{
return $this->screen_share;
} | (default false)
Generated from protobuf field <code>bool screen_share = 3;</code>
@return bool | getScreenShare | php | agence104/livekit-server-sdk-php | src/proto/Livekit/ParticipantEgressRequest.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/ParticipantEgressRequest.php | Apache-2.0 |
public function setScreenShare($var)
{
GPBUtil::checkBool($var);
$this->screen_share = $var;
return $this;
} | (default false)
Generated from protobuf field <code>bool screen_share = 3;</code>
@param bool $var
@return $this | setScreenShare | php | agence104/livekit-server-sdk-php | src/proto/Livekit/ParticipantEgressRequest.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/ParticipantEgressRequest.php | Apache-2.0 |
public function getPreset()
{
return $this->readOneof(4);
} | (default H264_720P_30)
Generated from protobuf field <code>.livekit.EncodingOptionsPreset preset = 4;</code>
@return int | getPreset | php | agence104/livekit-server-sdk-php | src/proto/Livekit/ParticipantEgressRequest.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/ParticipantEgressRequest.php | Apache-2.0 |
public function setPreset($var)
{
GPBUtil::checkEnum($var, \Livekit\EncodingOptionsPreset::class);
$this->writeOneof(4, $var);
return $this;
} | (default H264_720P_30)
Generated from protobuf field <code>.livekit.EncodingOptionsPreset preset = 4;</code>
@param int $var
@return $this | setPreset | php | agence104/livekit-server-sdk-php | src/proto/Livekit/ParticipantEgressRequest.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/ParticipantEgressRequest.php | Apache-2.0 |
public function getAdvanced()
{
return $this->readOneof(5);
} | (optional)
Generated from protobuf field <code>.livekit.EncodingOptions advanced = 5;</code>
@return \Livekit\EncodingOptions|null | getAdvanced | php | agence104/livekit-server-sdk-php | src/proto/Livekit/ParticipantEgressRequest.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/ParticipantEgressRequest.php | Apache-2.0 |
public function setAdvanced($var)
{
GPBUtil::checkMessage($var, \Livekit\EncodingOptions::class);
$this->writeOneof(5, $var);
return $this;
} | (optional)
Generated from protobuf field <code>.livekit.EncodingOptions advanced = 5;</code>
@param \Livekit\EncodingOptions $var
@return $this | setAdvanced | php | agence104/livekit-server-sdk-php | src/proto/Livekit/ParticipantEgressRequest.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/ParticipantEgressRequest.php | Apache-2.0 |
public function getFileOutputs()
{
return $this->file_outputs;
} | Generated from protobuf field <code>repeated .livekit.EncodedFileOutput file_outputs = 6;</code>
@return \Google\Protobuf\Internal\RepeatedField | getFileOutputs | php | agence104/livekit-server-sdk-php | src/proto/Livekit/ParticipantEgressRequest.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/ParticipantEgressRequest.php | Apache-2.0 |
public function setFileOutputs($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Livekit\EncodedFileOutput::class);
$this->file_outputs = $arr;
return $this;
} | Generated from protobuf field <code>repeated .livekit.EncodedFileOutput file_outputs = 6;</code>
@param \Livekit\EncodedFileOutput[]|\Google\Protobuf\Internal\RepeatedField $var
@return $this | setFileOutputs | php | agence104/livekit-server-sdk-php | src/proto/Livekit/ParticipantEgressRequest.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/ParticipantEgressRequest.php | Apache-2.0 |
public function getStreamOutputs()
{
return $this->stream_outputs;
} | Generated from protobuf field <code>repeated .livekit.StreamOutput stream_outputs = 7;</code>
@return \Google\Protobuf\Internal\RepeatedField | getStreamOutputs | php | agence104/livekit-server-sdk-php | src/proto/Livekit/ParticipantEgressRequest.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/ParticipantEgressRequest.php | Apache-2.0 |
public function setStreamOutputs($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Livekit\StreamOutput::class);
$this->stream_outputs = $arr;
return $this;
} | Generated from protobuf field <code>repeated .livekit.StreamOutput stream_outputs = 7;</code>
@param \Livekit\StreamOutput[]|\Google\Protobuf\Internal\RepeatedField $var
@return $this | setStreamOutputs | php | agence104/livekit-server-sdk-php | src/proto/Livekit/ParticipantEgressRequest.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/ParticipantEgressRequest.php | Apache-2.0 |
public function getSegmentOutputs()
{
return $this->segment_outputs;
} | Generated from protobuf field <code>repeated .livekit.SegmentedFileOutput segment_outputs = 8;</code>
@return \Google\Protobuf\Internal\RepeatedField | getSegmentOutputs | php | agence104/livekit-server-sdk-php | src/proto/Livekit/ParticipantEgressRequest.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/ParticipantEgressRequest.php | Apache-2.0 |
public function setSegmentOutputs($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Livekit\SegmentedFileOutput::class);
$this->segment_outputs = $arr;
return $this;
} | Generated from protobuf field <code>repeated .livekit.SegmentedFileOutput segment_outputs = 8;</code>
@param \Livekit\SegmentedFileOutput[]|\Google\Protobuf\Internal\RepeatedField $var
@return $this | setSegmentOutputs | php | agence104/livekit-server-sdk-php | src/proto/Livekit/ParticipantEgressRequest.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/ParticipantEgressRequest.php | Apache-2.0 |
public function getImageOutputs()
{
return $this->image_outputs;
} | Generated from protobuf field <code>repeated .livekit.ImageOutput image_outputs = 9;</code>
@return \Google\Protobuf\Internal\RepeatedField | getImageOutputs | php | agence104/livekit-server-sdk-php | src/proto/Livekit/ParticipantEgressRequest.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/ParticipantEgressRequest.php | Apache-2.0 |
public function setImageOutputs($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Livekit\ImageOutput::class);
$this->image_outputs = $arr;
return $this;
} | Generated from protobuf field <code>repeated .livekit.ImageOutput image_outputs = 9;</code>
@param \Livekit\ImageOutput[]|\Google\Protobuf\Internal\RepeatedField $var
@return $this | setImageOutputs | php | agence104/livekit-server-sdk-php | src/proto/Livekit/ParticipantEgressRequest.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/ParticipantEgressRequest.php | Apache-2.0 |
public function getId()
{
return $this->id;
} | Generated from protobuf field <code>string id = 1;</code>
@return string | getId | php | agence104/livekit-server-sdk-php | src/proto/Livekit/Job.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/Job.php | Apache-2.0 |
public function setId($var)
{
GPBUtil::checkString($var, True);
$this->id = $var;
return $this;
} | Generated from protobuf field <code>string id = 1;</code>
@param string $var
@return $this | setId | php | agence104/livekit-server-sdk-php | src/proto/Livekit/Job.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/Job.php | Apache-2.0 |
public function getDispatchId()
{
return $this->dispatch_id;
} | Generated from protobuf field <code>string dispatch_id = 9;</code>
@return string | getDispatchId | php | agence104/livekit-server-sdk-php | src/proto/Livekit/Job.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/Job.php | Apache-2.0 |
public function setDispatchId($var)
{
GPBUtil::checkString($var, True);
$this->dispatch_id = $var;
return $this;
} | Generated from protobuf field <code>string dispatch_id = 9;</code>
@param string $var
@return $this | setDispatchId | php | agence104/livekit-server-sdk-php | src/proto/Livekit/Job.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/Job.php | Apache-2.0 |
public function getType()
{
return $this->type;
} | Generated from protobuf field <code>.livekit.JobType type = 2;</code>
@return int | getType | php | agence104/livekit-server-sdk-php | src/proto/Livekit/Job.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/Job.php | Apache-2.0 |
public function setType($var)
{
GPBUtil::checkEnum($var, \Livekit\JobType::class);
$this->type = $var;
return $this;
} | Generated from protobuf field <code>.livekit.JobType type = 2;</code>
@param int $var
@return $this | setType | php | agence104/livekit-server-sdk-php | src/proto/Livekit/Job.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/Job.php | Apache-2.0 |
public function getRoom()
{
return $this->room;
} | Generated from protobuf field <code>.livekit.Room room = 3;</code>
@return \Livekit\Room|null | getRoom | php | agence104/livekit-server-sdk-php | src/proto/Livekit/Job.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/Job.php | Apache-2.0 |
public function setRoom($var)
{
GPBUtil::checkMessage($var, \Livekit\Room::class);
$this->room = $var;
return $this;
} | Generated from protobuf field <code>.livekit.Room room = 3;</code>
@param \Livekit\Room $var
@return $this | setRoom | php | agence104/livekit-server-sdk-php | src/proto/Livekit/Job.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/Job.php | Apache-2.0 |
public function getParticipant()
{
return $this->participant;
} | Generated from protobuf field <code>optional .livekit.ParticipantInfo participant = 4;</code>
@return \Livekit\ParticipantInfo|null | getParticipant | php | agence104/livekit-server-sdk-php | src/proto/Livekit/Job.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/Job.php | Apache-2.0 |
public function setParticipant($var)
{
GPBUtil::checkMessage($var, \Livekit\ParticipantInfo::class);
$this->participant = $var;
return $this;
} | Generated from protobuf field <code>optional .livekit.ParticipantInfo participant = 4;</code>
@param \Livekit\ParticipantInfo $var
@return $this | setParticipant | php | agence104/livekit-server-sdk-php | src/proto/Livekit/Job.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/Job.php | Apache-2.0 |
public function getNamespace()
{
@trigger_error('namespace is deprecated.', E_USER_DEPRECATED);
return $this->namespace;
} | Generated from protobuf field <code>string namespace = 5 [deprecated = true];</code>
@return string
@deprecated | getNamespace | php | agence104/livekit-server-sdk-php | src/proto/Livekit/Job.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/Job.php | Apache-2.0 |
public function setNamespace($var)
{
@trigger_error('namespace is deprecated.', E_USER_DEPRECATED);
GPBUtil::checkString($var, True);
$this->namespace = $var;
return $this;
} | Generated from protobuf field <code>string namespace = 5 [deprecated = true];</code>
@param string $var
@return $this
@deprecated | setNamespace | php | agence104/livekit-server-sdk-php | src/proto/Livekit/Job.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/Job.php | Apache-2.0 |
public function getMetadata()
{
return $this->metadata;
} | Generated from protobuf field <code>string metadata = 6;</code>
@return string | getMetadata | php | agence104/livekit-server-sdk-php | src/proto/Livekit/Job.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/Job.php | Apache-2.0 |
public function setMetadata($var)
{
GPBUtil::checkString($var, True);
$this->metadata = $var;
return $this;
} | Generated from protobuf field <code>string metadata = 6;</code>
@param string $var
@return $this | setMetadata | php | agence104/livekit-server-sdk-php | src/proto/Livekit/Job.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/Job.php | Apache-2.0 |
public function getAgentName()
{
return $this->agent_name;
} | Generated from protobuf field <code>string agent_name = 7;</code>
@return string | getAgentName | php | agence104/livekit-server-sdk-php | src/proto/Livekit/Job.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/Job.php | Apache-2.0 |
public function setAgentName($var)
{
GPBUtil::checkString($var, True);
$this->agent_name = $var;
return $this;
} | Generated from protobuf field <code>string agent_name = 7;</code>
@param string $var
@return $this | setAgentName | php | agence104/livekit-server-sdk-php | src/proto/Livekit/Job.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/Job.php | Apache-2.0 |
public function getState()
{
return $this->state;
} | Generated from protobuf field <code>.livekit.JobState state = 8;</code>
@return \Livekit\JobState|null | getState | php | agence104/livekit-server-sdk-php | src/proto/Livekit/Job.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/Job.php | Apache-2.0 |
public function setState($var)
{
GPBUtil::checkMessage($var, \Livekit\JobState::class);
$this->state = $var;
return $this;
} | Generated from protobuf field <code>.livekit.JobState state = 8;</code>
@param \Livekit\JobState $var
@return $this | setState | php | agence104/livekit-server-sdk-php | src/proto/Livekit/Job.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/Job.php | Apache-2.0 |
public function getSid()
{
return $this->sid;
} | Generated from protobuf field <code>string sid = 1;</code>
@return string | getSid | php | agence104/livekit-server-sdk-php | src/proto/Livekit/Room.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/Room.php | Apache-2.0 |
public function setSid($var)
{
GPBUtil::checkString($var, True);
$this->sid = $var;
return $this;
} | Generated from protobuf field <code>string sid = 1;</code>
@param string $var
@return $this | setSid | php | agence104/livekit-server-sdk-php | src/proto/Livekit/Room.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/Room.php | Apache-2.0 |
public function getName()
{
return $this->name;
} | Generated from protobuf field <code>string name = 2;</code>
@return string | getName | php | agence104/livekit-server-sdk-php | src/proto/Livekit/Room.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/Room.php | Apache-2.0 |
public function setName($var)
{
GPBUtil::checkString($var, True);
$this->name = $var;
return $this;
} | Generated from protobuf field <code>string name = 2;</code>
@param string $var
@return $this | setName | php | agence104/livekit-server-sdk-php | src/proto/Livekit/Room.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/Room.php | Apache-2.0 |
public function getEmptyTimeout()
{
return $this->empty_timeout;
} | Generated from protobuf field <code>uint32 empty_timeout = 3;</code>
@return int | getEmptyTimeout | php | agence104/livekit-server-sdk-php | src/proto/Livekit/Room.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/Room.php | Apache-2.0 |
public function setEmptyTimeout($var)
{
GPBUtil::checkUint32($var);
$this->empty_timeout = $var;
return $this;
} | Generated from protobuf field <code>uint32 empty_timeout = 3;</code>
@param int $var
@return $this | setEmptyTimeout | php | agence104/livekit-server-sdk-php | src/proto/Livekit/Room.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/Room.php | Apache-2.0 |
public function getDepartureTimeout()
{
return $this->departure_timeout;
} | Generated from protobuf field <code>uint32 departure_timeout = 14;</code>
@return int | getDepartureTimeout | php | agence104/livekit-server-sdk-php | src/proto/Livekit/Room.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/Room.php | Apache-2.0 |
public function setDepartureTimeout($var)
{
GPBUtil::checkUint32($var);
$this->departure_timeout = $var;
return $this;
} | Generated from protobuf field <code>uint32 departure_timeout = 14;</code>
@param int $var
@return $this | setDepartureTimeout | php | agence104/livekit-server-sdk-php | src/proto/Livekit/Room.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/Room.php | Apache-2.0 |
public function getMaxParticipants()
{
return $this->max_participants;
} | Generated from protobuf field <code>uint32 max_participants = 4;</code>
@return int | getMaxParticipants | php | agence104/livekit-server-sdk-php | src/proto/Livekit/Room.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/Room.php | Apache-2.0 |
public function setMaxParticipants($var)
{
GPBUtil::checkUint32($var);
$this->max_participants = $var;
return $this;
} | Generated from protobuf field <code>uint32 max_participants = 4;</code>
@param int $var
@return $this | setMaxParticipants | php | agence104/livekit-server-sdk-php | src/proto/Livekit/Room.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/Room.php | Apache-2.0 |
public function getCreationTime()
{
return $this->creation_time;
} | Generated from protobuf field <code>int64 creation_time = 5;</code>
@return int|string | getCreationTime | php | agence104/livekit-server-sdk-php | src/proto/Livekit/Room.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/Room.php | Apache-2.0 |
public function setCreationTime($var)
{
GPBUtil::checkInt64($var);
$this->creation_time = $var;
return $this;
} | Generated from protobuf field <code>int64 creation_time = 5;</code>
@param int|string $var
@return $this | setCreationTime | php | agence104/livekit-server-sdk-php | src/proto/Livekit/Room.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/Room.php | Apache-2.0 |
public function getCreationTimeMs()
{
return $this->creation_time_ms;
} | Generated from protobuf field <code>int64 creation_time_ms = 15;</code>
@return int|string | getCreationTimeMs | php | agence104/livekit-server-sdk-php | src/proto/Livekit/Room.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/Room.php | Apache-2.0 |
public function setCreationTimeMs($var)
{
GPBUtil::checkInt64($var);
$this->creation_time_ms = $var;
return $this;
} | Generated from protobuf field <code>int64 creation_time_ms = 15;</code>
@param int|string $var
@return $this | setCreationTimeMs | php | agence104/livekit-server-sdk-php | src/proto/Livekit/Room.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/Room.php | Apache-2.0 |
public function getTurnPassword()
{
return $this->turn_password;
} | Generated from protobuf field <code>string turn_password = 6;</code>
@return string | getTurnPassword | php | agence104/livekit-server-sdk-php | src/proto/Livekit/Room.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/Room.php | Apache-2.0 |
public function setTurnPassword($var)
{
GPBUtil::checkString($var, True);
$this->turn_password = $var;
return $this;
} | Generated from protobuf field <code>string turn_password = 6;</code>
@param string $var
@return $this | setTurnPassword | php | agence104/livekit-server-sdk-php | src/proto/Livekit/Room.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/Room.php | Apache-2.0 |
public function getEnabledCodecs()
{
return $this->enabled_codecs;
} | Generated from protobuf field <code>repeated .livekit.Codec enabled_codecs = 7;</code>
@return \Google\Protobuf\Internal\RepeatedField | getEnabledCodecs | php | agence104/livekit-server-sdk-php | src/proto/Livekit/Room.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/Room.php | Apache-2.0 |
public function setEnabledCodecs($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Livekit\Codec::class);
$this->enabled_codecs = $arr;
return $this;
} | Generated from protobuf field <code>repeated .livekit.Codec enabled_codecs = 7;</code>
@param \Livekit\Codec[]|\Google\Protobuf\Internal\RepeatedField $var
@return $this | setEnabledCodecs | php | agence104/livekit-server-sdk-php | src/proto/Livekit/Room.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/Room.php | Apache-2.0 |
public function getMetadata()
{
return $this->metadata;
} | Generated from protobuf field <code>string metadata = 8;</code>
@return string | getMetadata | php | agence104/livekit-server-sdk-php | src/proto/Livekit/Room.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/Room.php | Apache-2.0 |
public function setMetadata($var)
{
GPBUtil::checkString($var, True);
$this->metadata = $var;
return $this;
} | Generated from protobuf field <code>string metadata = 8;</code>
@param string $var
@return $this | setMetadata | php | agence104/livekit-server-sdk-php | src/proto/Livekit/Room.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/Room.php | Apache-2.0 |
public function getNumParticipants()
{
return $this->num_participants;
} | Generated from protobuf field <code>uint32 num_participants = 9;</code>
@return int | getNumParticipants | php | agence104/livekit-server-sdk-php | src/proto/Livekit/Room.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/Room.php | Apache-2.0 |
public function setNumParticipants($var)
{
GPBUtil::checkUint32($var);
$this->num_participants = $var;
return $this;
} | Generated from protobuf field <code>uint32 num_participants = 9;</code>
@param int $var
@return $this | setNumParticipants | php | agence104/livekit-server-sdk-php | src/proto/Livekit/Room.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/Room.php | Apache-2.0 |
public function getNumPublishers()
{
return $this->num_publishers;
} | Generated from protobuf field <code>uint32 num_publishers = 11;</code>
@return int | getNumPublishers | php | agence104/livekit-server-sdk-php | src/proto/Livekit/Room.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/Room.php | Apache-2.0 |
public function setNumPublishers($var)
{
GPBUtil::checkUint32($var);
$this->num_publishers = $var;
return $this;
} | Generated from protobuf field <code>uint32 num_publishers = 11;</code>
@param int $var
@return $this | setNumPublishers | php | agence104/livekit-server-sdk-php | src/proto/Livekit/Room.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/Room.php | Apache-2.0 |
public function getActiveRecording()
{
return $this->active_recording;
} | Generated from protobuf field <code>bool active_recording = 10;</code>
@return bool | getActiveRecording | php | agence104/livekit-server-sdk-php | src/proto/Livekit/Room.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/Room.php | Apache-2.0 |
public function setActiveRecording($var)
{
GPBUtil::checkBool($var);
$this->active_recording = $var;
return $this;
} | Generated from protobuf field <code>bool active_recording = 10;</code>
@param bool $var
@return $this | setActiveRecording | php | agence104/livekit-server-sdk-php | src/proto/Livekit/Room.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/Room.php | Apache-2.0 |
public function getVersion()
{
return $this->version;
} | Generated from protobuf field <code>.livekit.TimedVersion version = 13;</code>
@return \Livekit\TimedVersion|null | getVersion | php | agence104/livekit-server-sdk-php | src/proto/Livekit/Room.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/Room.php | Apache-2.0 |
public function setVersion($var)
{
GPBUtil::checkMessage($var, \Livekit\TimedVersion::class);
$this->version = $var;
return $this;
} | Generated from protobuf field <code>.livekit.TimedVersion version = 13;</code>
@param \Livekit\TimedVersion $var
@return $this | setVersion | php | agence104/livekit-server-sdk-php | src/proto/Livekit/Room.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/Room.php | Apache-2.0 |
public function getItems()
{
return $this->items;
} | Generated from protobuf field <code>repeated .livekit.SIPTrunkInfo items = 1;</code>
@return \Google\Protobuf\Internal\RepeatedField | getItems | php | agence104/livekit-server-sdk-php | src/proto/Livekit/ListSIPTrunkResponse.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/ListSIPTrunkResponse.php | Apache-2.0 |
public function setItems($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Livekit\SIPTrunkInfo::class);
$this->items = $arr;
return $this;
} | Generated from protobuf field <code>repeated .livekit.SIPTrunkInfo items = 1;</code>
@param \Livekit\SIPTrunkInfo[]|\Google\Protobuf\Internal\RepeatedField $var
@return $this | setItems | php | agence104/livekit-server-sdk-php | src/proto/Livekit/ListSIPTrunkResponse.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/ListSIPTrunkResponse.php | Apache-2.0 |
public function getEvent()
{
return $this->event;
} | one of room_started, room_finished, participant_joined, participant_left,
track_published, track_unpublished, egress_started, egress_updated, egress_ended,
ingress_started, ingress_ended
Generated from protobuf field <code>string event = 1;</code>
@return string | getEvent | php | agence104/livekit-server-sdk-php | src/proto/Livekit/WebhookEvent.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/WebhookEvent.php | Apache-2.0 |
public function setEvent($var)
{
GPBUtil::checkString($var, True);
$this->event = $var;
return $this;
} | one of room_started, room_finished, participant_joined, participant_left,
track_published, track_unpublished, egress_started, egress_updated, egress_ended,
ingress_started, ingress_ended
Generated from protobuf field <code>string event = 1;</code>
@param string $var
@return $this | setEvent | php | agence104/livekit-server-sdk-php | src/proto/Livekit/WebhookEvent.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/WebhookEvent.php | Apache-2.0 |
public function getRoom()
{
return $this->room;
} | Generated from protobuf field <code>.livekit.Room room = 2;</code>
@return \Livekit\Room|null | getRoom | php | agence104/livekit-server-sdk-php | src/proto/Livekit/WebhookEvent.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/WebhookEvent.php | Apache-2.0 |
public function setRoom($var)
{
GPBUtil::checkMessage($var, \Livekit\Room::class);
$this->room = $var;
return $this;
} | Generated from protobuf field <code>.livekit.Room room = 2;</code>
@param \Livekit\Room $var
@return $this | setRoom | php | agence104/livekit-server-sdk-php | src/proto/Livekit/WebhookEvent.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/WebhookEvent.php | Apache-2.0 |
public function getParticipant()
{
return $this->participant;
} | set when event is participant_* or track_*
Generated from protobuf field <code>.livekit.ParticipantInfo participant = 3;</code>
@return \Livekit\ParticipantInfo|null | getParticipant | php | agence104/livekit-server-sdk-php | src/proto/Livekit/WebhookEvent.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/WebhookEvent.php | Apache-2.0 |
public function setParticipant($var)
{
GPBUtil::checkMessage($var, \Livekit\ParticipantInfo::class);
$this->participant = $var;
return $this;
} | set when event is participant_* or track_*
Generated from protobuf field <code>.livekit.ParticipantInfo participant = 3;</code>
@param \Livekit\ParticipantInfo $var
@return $this | setParticipant | php | agence104/livekit-server-sdk-php | src/proto/Livekit/WebhookEvent.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/WebhookEvent.php | Apache-2.0 |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.