* Sets the current network type. Can be called before authorization. Calling this method forces all network connections to reopen, mitigating the delay in switching between different networks, so it should be called whenever the network is changed, even if the network type remains the same. Network type is used to check whether the library can use the network at all and also for collecting detailed network data usage statistics.
13
*/
14
class SetNetworkType extends TdFunction
15
{
16
public const TYPE_NAME = 'setNetworkType';
17
18
/**
19
* The new network type. By default, networkTypeOther.
20
*
21
* @var NetworkType
22
*/
23
protected NetworkType $type;
24
25
public function __construct(NetworkType $type)
26
{
27
$this->type = $type;
28
}
29
30
public static function fromArray(array $array): SetNetworkType