File manager - Edit - /var/www/payraty/helpdesk/vendor/muxinc/mux-php/MuxPhp/Models/UpdateLiveStreamRequest.php
Back
<?php /** * UpdateLiveStreamRequest * * PHP version 7.2 * * @category Class * @package MuxPhp * @author Mux API team * @link https://docs.mux.com */ /** * Mux API * * Mux is how developers build online video. This API encompasses both Mux Video and Mux Data functionality to help you build your video-related projects better and faster than ever before. * * The version of the OpenAPI document: v1 * Contact: devex@mux.com * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.0.1 */ /** * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ namespace MuxPhp\Models; use \ArrayAccess; use \MuxPhp\ObjectSerializer; /** * UpdateLiveStreamRequest Class Doc Comment * * @category Class * @package MuxPhp * @author Mux API team * @link https://docs.mux.com * @implements \ArrayAccess<TKey, TValue> * @template TKey int|null * @template TValue mixed|null */ class UpdateLiveStreamRequest implements ModelInterface, ArrayAccess, \JsonSerializable { public const DISCRIMINATOR = null; /** * The original name of the model. * * @var string */ protected static $openAPIModelName = 'UpdateLiveStreamRequest'; /** * Array of property to type mappings. Used for (de)serialization * * @var string[] */ protected static $openAPITypes = [ 'passthrough' => 'string', 'latency_mode' => 'string', 'reconnect_window' => 'float', 'use_slate_for_standard_latency' => 'bool', 'reconnect_slate_url' => 'string', 'max_continuous_duration' => 'int', 'new_asset_settings' => '\MuxPhp\Models\UpdateLiveStreamNewAssetSettings' ]; /** * Array of property to format mappings. Used for (de)serialization * * @var string[] * @phpstan-var array<string, string|null> * @psalm-var array<string, string|null> */ protected static $openAPIFormats = [ 'passthrough' => null, 'latency_mode' => null, 'reconnect_window' => 'float', 'use_slate_for_standard_latency' => 'boolean', 'reconnect_slate_url' => null, 'max_continuous_duration' => 'int32', 'new_asset_settings' => null ]; /** * Array of nullable properties. Used for (de)serialization * * @var boolean[] */ protected static array $openAPINullables = [ 'passthrough' => false, 'latency_mode' => false, 'reconnect_window' => false, 'use_slate_for_standard_latency' => false, 'reconnect_slate_url' => false, 'max_continuous_duration' => false, 'new_asset_settings' => false ]; /** * If a nullable field gets set to null, insert it here * * @var boolean[] */ protected array $openAPINullablesSetToNull = []; /** * Array of property to type mappings. Used for (de)serialization * * @return array */ public static function openAPITypes() { return self::$openAPITypes; } /** * Array of property to format mappings. Used for (de)serialization * * @return array */ public static function openAPIFormats() { return self::$openAPIFormats; } /** * Array of nullable properties * * @return array */ protected static function openAPINullables(): array { return self::$openAPINullables; } /** * Array of nullable field names deliberately set to null * * @return boolean[] */ private function getOpenAPINullablesSetToNull(): array { return $this->openAPINullablesSetToNull; } /** * Checks if a property is nullable * * @param string $property * @return bool */ public static function isNullable(string $property): bool { return self::openAPINullables()[$property] ?? false; } /** * Checks if a nullable property is set to null. * * @param string $property * @return bool */ public function isNullableSetToNull(string $property): bool { return in_array($property, $this->getOpenAPINullablesSetToNull(), true); } /** * Array of attributes where the key is the local name, * and the value is the original name * * @var string[] */ protected static $attributeMap = [ 'passthrough' => 'passthrough', 'latency_mode' => 'latency_mode', 'reconnect_window' => 'reconnect_window', 'use_slate_for_standard_latency' => 'use_slate_for_standard_latency', 'reconnect_slate_url' => 'reconnect_slate_url', 'max_continuous_duration' => 'max_continuous_duration', 'new_asset_settings' => 'new_asset_settings' ]; /** * Array of attributes to setter functions (for deserialization of responses) * * @var string[] */ protected static $setters = [ 'passthrough' => 'setPassthrough', 'latency_mode' => 'setLatencyMode', 'reconnect_window' => 'setReconnectWindow', 'use_slate_for_standard_latency' => 'setUseSlateForStandardLatency', 'reconnect_slate_url' => 'setReconnectSlateUrl', 'max_continuous_duration' => 'setMaxContinuousDuration', 'new_asset_settings' => 'setNewAssetSettings' ]; /** * Array of attributes to getter functions (for serialization of requests) * * @var string[] */ protected static $getters = [ 'passthrough' => 'getPassthrough', 'latency_mode' => 'getLatencyMode', 'reconnect_window' => 'getReconnectWindow', 'use_slate_for_standard_latency' => 'getUseSlateForStandardLatency', 'reconnect_slate_url' => 'getReconnectSlateUrl', 'max_continuous_duration' => 'getMaxContinuousDuration', 'new_asset_settings' => 'getNewAssetSettings' ]; /** * Array of attributes where the key is the local name, * and the value is the original name * * @return array */ public static function attributeMap() { return self::$attributeMap; } /** * Array of attributes to setter functions (for deserialization of responses) * * @return array */ public static function setters() { return self::$setters; } /** * Array of attributes to getter functions (for serialization of requests) * * @return array */ public static function getters() { return self::$getters; } /** * The original name of the model. * * @return string */ public function getModelName() { return self::$openAPIModelName; } public const LATENCY_MODE_LOW = 'low'; public const LATENCY_MODE_REDUCED = 'reduced'; public const LATENCY_MODE_STANDARD = 'standard'; /** * Gets allowable values of the enum * * @return string[] */ public function getLatencyModeAllowableValues() { return [ self::LATENCY_MODE_LOW, self::LATENCY_MODE_REDUCED, self::LATENCY_MODE_STANDARD, ]; } /** * Associative array for storing property values * * @var mixed[] */ protected $container = []; /** * Constructor * * @param mixed[] $data Associated array of property values * initializing the model */ public function __construct(array $data = null) { // MUX: enum hack (self::) due to OAS emitting problems. // please re-integrate with mainline when possible. // src: https://github.com/OpenAPITools/openapi-generator/issues/9038 $this->setIfExists('passthrough', $data ?? [], null); $this->setIfExists('latency_mode', $data ?? [], null); $this->setIfExists('reconnect_window', $data ?? [], 60); $this->setIfExists('use_slate_for_standard_latency', $data ?? [], false); $this->setIfExists('reconnect_slate_url', $data ?? [], null); $this->setIfExists('max_continuous_duration', $data ?? [], 43200); $this->setIfExists('new_asset_settings', $data ?? [], null); } /** * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the * $this->openAPINullablesSetToNull array * * @param string $variableName * @param array $fields * @param mixed $defaultValue */ private function setIfExists(string $variableName, array $fields, $defaultValue): void { if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { $this->openAPINullablesSetToNull[] = $variableName; } $this->container[$variableName] = $fields[$variableName] ?? $defaultValue; } /** * Show all the invalid properties with reasons. * * @return array invalid properties with reasons */ public function listInvalidProperties() { $invalidProperties = []; $allowedValues = $this->getLatencyModeAllowableValues(); if (!is_null($this->container['latency_mode']) && !in_array($this->container['latency_mode'], $allowedValues, true)) { $invalidProperties[] = sprintf( "invalid value '%s' for 'latency_mode', must be one of '%s'", $this->container['latency_mode'], implode("', '", $allowedValues) ); } if (!is_null($this->container['reconnect_window']) && ($this->container['reconnect_window'] > 1800)) { $invalidProperties[] = "invalid value for 'reconnect_window', must be smaller than or equal to 1800."; } if (!is_null($this->container['reconnect_window']) && ($this->container['reconnect_window'] < 0)) { $invalidProperties[] = "invalid value for 'reconnect_window', must be bigger than or equal to 0."; } if (!is_null($this->container['max_continuous_duration']) && ($this->container['max_continuous_duration'] > 43200)) { $invalidProperties[] = "invalid value for 'max_continuous_duration', must be smaller than or equal to 43200."; } if (!is_null($this->container['max_continuous_duration']) && ($this->container['max_continuous_duration'] < 60)) { $invalidProperties[] = "invalid value for 'max_continuous_duration', must be bigger than or equal to 60."; } return $invalidProperties; } /** * Validate all the properties in the model * return true if all passed * * @return bool True if all properties are valid */ public function valid() { return count($this->listInvalidProperties()) === 0; } /** * Gets passthrough * * @return string|null */ public function getPassthrough() { return $this->container['passthrough']; } /** * Sets passthrough * * @param string|null $passthrough Arbitrary user-supplied metadata set for the live stream. Max 255 characters. In order to clear this value, the field should be included with an empty-string value. * * @return self */ public function setPassthrough($passthrough) { if (is_null($passthrough)) { throw new \InvalidArgumentException('non-nullable passthrough cannot be null'); } $this->container['passthrough'] = $passthrough; return $this; } /** * Gets latency_mode * * @return string|null */ public function getLatencyMode() { return $this->container['latency_mode']; } /** * Sets latency_mode * * @param string|null $latency_mode Latency is the time from when the streamer transmits a frame of video to when you see it in the player. Set this as an alternative to setting low latency or reduced latency flags. * * @return self */ public function setLatencyMode($latency_mode) { $allowedValues = $this->getLatencyModeAllowableValues(); if (!is_null($latency_mode) && !in_array($latency_mode, $allowedValues, true)) { throw new \InvalidArgumentException( sprintf( "Invalid value '%s' for 'latency_mode', must be one of '%s'", $latency_mode, implode("', '", $allowedValues) ) ); } if (is_null($latency_mode)) { throw new \InvalidArgumentException('non-nullable latency_mode cannot be null'); } $this->container['latency_mode'] = $latency_mode; return $this; } /** * Gets reconnect_window * * @return float|null */ public function getReconnectWindow() { return $this->container['reconnect_window']; } /** * Sets reconnect_window * * @param float|null $reconnect_window When live streaming software disconnects from Mux, either intentionally or due to a drop in the network, the Reconnect Window is the time in seconds that Mux should wait for the streaming software to reconnect before considering the live stream finished and completing the recorded asset. If not specified directly, Standard Latency streams have a Reconnect Window of 60 seconds; Reduced and Low Latency streams have a default of 0 seconds, or no Reconnect Window. For that reason, we suggest specifying a value other than zero for Reduced and Low Latency streams. Reduced and Low Latency streams with a Reconnect Window greater than zero will insert slate media into the recorded asset while waiting for the streaming software to reconnect or when there are brief interruptions in the live stream media. When using a Reconnect Window setting higher than 60 seconds with a Standard Latency stream, we highly recommend enabling slate with the `use_slate_for_standard_latency` option. * * @return self */ public function setReconnectWindow($reconnect_window) { if (!is_null($reconnect_window) && ($reconnect_window > 1800)) { throw new \InvalidArgumentException('invalid value for $reconnect_window when calling UpdateLiveStreamRequest., must be smaller than or equal to 1800.'); } if (!is_null($reconnect_window) && ($reconnect_window < 0)) { throw new \InvalidArgumentException('invalid value for $reconnect_window when calling UpdateLiveStreamRequest., must be bigger than or equal to 0.'); } if (is_null($reconnect_window)) { throw new \InvalidArgumentException('non-nullable reconnect_window cannot be null'); } $this->container['reconnect_window'] = $reconnect_window; return $this; } /** * Gets use_slate_for_standard_latency * * @return bool|null */ public function getUseSlateForStandardLatency() { return $this->container['use_slate_for_standard_latency']; } /** * Sets use_slate_for_standard_latency * * @param bool|null $use_slate_for_standard_latency By default, Standard Latency live streams do not have slate media inserted while waiting for live streaming software to reconnect to Mux. Setting this to true enables slate insertion on a Standard Latency stream. * * @return self */ public function setUseSlateForStandardLatency($use_slate_for_standard_latency) { if (is_null($use_slate_for_standard_latency)) { throw new \InvalidArgumentException('non-nullable use_slate_for_standard_latency cannot be null'); } $this->container['use_slate_for_standard_latency'] = $use_slate_for_standard_latency; return $this; } /** * Gets reconnect_slate_url * * @return string|null */ public function getReconnectSlateUrl() { return $this->container['reconnect_slate_url']; } /** * Sets reconnect_slate_url * * @param string|null $reconnect_slate_url The URL of the image file that Mux should download and use as slate media during interruptions of the live stream media. This file will be downloaded each time a new recorded asset is created from the live stream. Set this to a blank string to clear the value so that the default slate media will be used. * * @return self */ public function setReconnectSlateUrl($reconnect_slate_url) { if (is_null($reconnect_slate_url)) { throw new \InvalidArgumentException('non-nullable reconnect_slate_url cannot be null'); } $this->container['reconnect_slate_url'] = $reconnect_slate_url; return $this; } /** * Gets max_continuous_duration * * @return int|null */ public function getMaxContinuousDuration() { return $this->container['max_continuous_duration']; } /** * Sets max_continuous_duration * * @param int|null $max_continuous_duration The time in seconds a live stream may be continuously active before being disconnected. Defaults to 12 hours. * * @return self */ public function setMaxContinuousDuration($max_continuous_duration) { if (!is_null($max_continuous_duration) && ($max_continuous_duration > 43200)) { throw new \InvalidArgumentException('invalid value for $max_continuous_duration when calling UpdateLiveStreamRequest., must be smaller than or equal to 43200.'); } if (!is_null($max_continuous_duration) && ($max_continuous_duration < 60)) { throw new \InvalidArgumentException('invalid value for $max_continuous_duration when calling UpdateLiveStreamRequest., must be bigger than or equal to 60.'); } if (is_null($max_continuous_duration)) { throw new \InvalidArgumentException('non-nullable max_continuous_duration cannot be null'); } $this->container['max_continuous_duration'] = $max_continuous_duration; return $this; } /** * Gets new_asset_settings * * @return \MuxPhp\Models\UpdateLiveStreamNewAssetSettings|null */ public function getNewAssetSettings() { return $this->container['new_asset_settings']; } /** * Sets new_asset_settings * * @param \MuxPhp\Models\UpdateLiveStreamNewAssetSettings|null $new_asset_settings new_asset_settings * * @return self */ public function setNewAssetSettings($new_asset_settings) { if (is_null($new_asset_settings)) { throw new \InvalidArgumentException('non-nullable new_asset_settings cannot be null'); } $this->container['new_asset_settings'] = $new_asset_settings; return $this; } /** * Returns true if offset exists. False otherwise. * * @param integer $offset Offset * * @return boolean */ public function offsetExists($offset): bool { return isset($this->container[$offset]); } /** * Gets offset. * * @param integer $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] public function offsetGet($offset) { return $this->container[$offset] ?? null; } /** * Sets value based on offset. * * @param int|null $offset Offset * @param mixed $value Value to be set * * @return void */ public function offsetSet($offset, $value): void { if (is_null($offset)) { $this->container[] = $value; } else { $this->container[$offset] = $value; } } /** * Unsets offset. * * @param integer $offset Offset * * @return void */ public function offsetUnset($offset): void { unset($this->container[$offset]); } /** * Serializes the object to a value that can be serialized natively by json_encode(). * @link https://www.php.net/manual/en/jsonserializable.jsonserialize.php * * @return mixed Returns data which can be serialized by json_encode(), which is a value * of any type other than a resource. */ #[\ReturnTypeWillChange] public function jsonSerialize() { return ObjectSerializer::sanitizeForSerialization($this); } /** * Gets the string presentation of the object * * @return string */ public function __toString(): string { return json_encode( ObjectSerializer::sanitizeForSerialization($this), JSON_PRETTY_PRINT ); } /** * Gets a header-safe presentation of the object * * @return string */ public function toHeaderValue(): string { return json_encode(ObjectSerializer::sanitizeForSerialization($this)); } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings