Вход Регистрация
Файл: sngine-v2.8/Script/includes/libs/Twilio/Rest/Supersim/V1/FleetOptions.php
Строк: 550
<?php

/**
 * This code was generated by
 *  / _    _  _|   _  _
 * | (_)/(_)(_|/| |(/_  v1.0.0
 * /       /
 */

namespace TwilioRestSupersimV1;

use 
TwilioOptions;
use 
TwilioValues;

/**
 * PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact help@twilio.com.
 */
abstract class FleetOptions {
    
/**
     * @param string $uniqueName An application-defined string that uniquely
     *                           identifies the resource
     * @param bool $dataEnabled Defines whether SIMs in the Fleet are capable of
     *                          using data connectivity
     * @param int $dataLimit The total data usage (download and upload combined) in
     *                       Megabytes that each Sim resource assigned to the Fleet
     *                       resource can consume
     * @param bool $commandsEnabled Defines whether SIMs in the Fleet are capable
     *                              of sending and receiving machine-to-machine SMS
     *                              via Commands
     * @param string $commandsUrl The URL that will receive a webhook when a SIM in
     *                            the Fleet originates a machine-to-machine SMS via
     *                            Commands
     * @param string $commandsMethod A string representing the HTTP method to use
     *                               when making a request to `commands_url`
     * @return CreateFleetOptions Options builder
     */
    
public static function create(string $uniqueName Values::NONEbool $dataEnabled Values::NONEint $dataLimit Values::NONEbool $commandsEnabled Values::NONEstring $commandsUrl Values::NONEstring $commandsMethod Values::NONE): CreateFleetOptions {
        return new 
CreateFleetOptions($uniqueName$dataEnabled$dataLimit$commandsEnabled$commandsUrl$commandsMethod);
    }

    
/**
     * @param string $networkAccessProfile The SID or unique name of the Network
     *                                     Access Profile of the Fleet
     * @return ReadFleetOptions Options builder
     */
    
public static function read(string $networkAccessProfile Values::NONE): ReadFleetOptions {
        return new 
ReadFleetOptions($networkAccessProfile);
    }

    
/**
     * @param string $uniqueName An application-defined string that uniquely
     *                           identifies the resource
     * @param string $networkAccessProfile The SID or unique name of the Network
     *                                     Access Profile of the Fleet
     * @return UpdateFleetOptions Options builder
     */
    
public static function update(string $uniqueName Values::NONEstring $networkAccessProfile Values::NONE): UpdateFleetOptions {
        return new 
UpdateFleetOptions($uniqueName$networkAccessProfile);
    }
}

class 
CreateFleetOptions extends Options {
    
/**
     * @param string $uniqueName An application-defined string that uniquely
     *                           identifies the resource
     * @param bool $dataEnabled Defines whether SIMs in the Fleet are capable of
     *                          using data connectivity
     * @param int $dataLimit The total data usage (download and upload combined) in
     *                       Megabytes that each Sim resource assigned to the Fleet
     *                       resource can consume
     * @param bool $commandsEnabled Defines whether SIMs in the Fleet are capable
     *                              of sending and receiving machine-to-machine SMS
     *                              via Commands
     * @param string $commandsUrl The URL that will receive a webhook when a SIM in
     *                            the Fleet originates a machine-to-machine SMS via
     *                            Commands
     * @param string $commandsMethod A string representing the HTTP method to use
     *                               when making a request to `commands_url`
     */
    
public function __construct(string $uniqueName Values::NONEbool $dataEnabled Values::NONEint $dataLimit Values::NONEbool $commandsEnabled Values::NONEstring $commandsUrl Values::NONEstring $commandsMethod Values::NONE) {
        
$this->options['uniqueName'] = $uniqueName;
        
$this->options['dataEnabled'] = $dataEnabled;
        
$this->options['dataLimit'] = $dataLimit;
        
$this->options['commandsEnabled'] = $commandsEnabled;
        
$this->options['commandsUrl'] = $commandsUrl;
        
$this->options['commandsMethod'] = $commandsMethod;
    }

    
/**
     * An application-defined string that uniquely identifies the resource. It can be used in place of the resource's `sid` in the URL to address the resource.
     *
     * @param string $uniqueName An application-defined string that uniquely
     *                           identifies the resource
     * @return $this Fluent Builder
     */
    
public function setUniqueName(string $uniqueName): self {
        
$this->options['uniqueName'] = $uniqueName;
        return 
$this;
    }

    
/**
     * Defines whether SIMs in the Fleet are capable of using 2G/3G/4G/LTE/CAT-M data connectivity
     *
     * @param bool $dataEnabled Defines whether SIMs in the Fleet are capable of
     *                          using data connectivity
     * @return $this Fluent Builder
     */
    
public function setDataEnabled(bool $dataEnabled): self {
        
$this->options['dataEnabled'] = $dataEnabled;
        return 
$this;
    }

    
/**
     * The total data usage (download and upload combined) in Megabytes that each Sim resource assigned to the Fleet resource can consume during a billing period (normally one month). Value must be between 1MB (1) and 2TB (2,000,000).
     *
     * @param int $dataLimit The total data usage (download and upload combined) in
     *                       Megabytes that each Sim resource assigned to the Fleet
     *                       resource can consume
     * @return $this Fluent Builder
     */
    
public function setDataLimit(int $dataLimit): self {
        
$this->options['dataLimit'] = $dataLimit;
        return 
$this;
    }

    
/**
     * Defines whether SIMs in the Fleet are capable of sending and receiving machine-to-machine SMS via Commands.
     *
     * @param bool $commandsEnabled Defines whether SIMs in the Fleet are capable
     *                              of sending and receiving machine-to-machine SMS
     *                              via Commands
     * @return $this Fluent Builder
     */
    
public function setCommandsEnabled(bool $commandsEnabled): self {
        
$this->options['commandsEnabled'] = $commandsEnabled;
        return 
$this;
    }

    
/**
     * The URL that will receive a webhook when a SIM in the Fleet originates a machine-to-machine SMS via Commands. Your server should respond with an HTTP status code in the 200 range; any response body will be ignored.
     *
     * @param string $commandsUrl The URL that will receive a webhook when a SIM in
     *                            the Fleet originates a machine-to-machine SMS via
     *                            Commands
     * @return $this Fluent Builder
     */
    
public function setCommandsUrl(string $commandsUrl): self {
        
$this->options['commandsUrl'] = $commandsUrl;
        return 
$this;
    }

    
/**
     * A string representing the HTTP method to use when making a request to `commands_url`. Can be one of POST or GET. Defaults to POST.
     *
     * @param string $commandsMethod A string representing the HTTP method to use
     *                               when making a request to `commands_url`
     * @return $this Fluent Builder
     */
    
public function setCommandsMethod(string $commandsMethod): self {
        
$this->options['commandsMethod'] = $commandsMethod;
        return 
$this;
    }

    
/**
     * Provide a friendly representation
     *
     * @return string Machine friendly representation
     */
    
public function __toString(): string {
        
$options http_build_query(Values::of($this->options), ''' ');
        return 
'[Twilio.Supersim.V1.CreateFleetOptions ' $options ']';
    }
}

class 
ReadFleetOptions extends Options {
    
/**
     * @param string $networkAccessProfile The SID or unique name of the Network
     *                                     Access Profile of the Fleet
     */
    
public function __construct(string $networkAccessProfile Values::NONE) {
        
$this->options['networkAccessProfile'] = $networkAccessProfile;
    }

    
/**
     * The SID or unique name of the Network Access Profile that controls which cellular networks the Fleet's SIMs can connect to
     *
     * @param string $networkAccessProfile The SID or unique name of the Network
     *                                     Access Profile of the Fleet
     * @return $this Fluent Builder
     */
    
public function setNetworkAccessProfile(string $networkAccessProfile): self {
        
$this->options['networkAccessProfile'] = $networkAccessProfile;
        return 
$this;
    }

    
/**
     * Provide a friendly representation
     *
     * @return string Machine friendly representation
     */
    
public function __toString(): string {
        
$options http_build_query(Values::of($this->options), ''' ');
        return 
'[Twilio.Supersim.V1.ReadFleetOptions ' $options ']';
    }
}

class 
UpdateFleetOptions extends Options {
    
/**
     * @param string $uniqueName An application-defined string that uniquely
     *                           identifies the resource
     * @param string $networkAccessProfile The SID or unique name of the Network
     *                                     Access Profile of the Fleet
     */
    
public function __construct(string $uniqueName Values::NONEstring $networkAccessProfile Values::NONE) {
        
$this->options['uniqueName'] = $uniqueName;
        
$this->options['networkAccessProfile'] = $networkAccessProfile;
    }

    
/**
     * An application-defined string that uniquely identifies the resource. It can be used in place of the resource's `sid` in the URL to address the resource.
     *
     * @param string $uniqueName An application-defined string that uniquely
     *                           identifies the resource
     * @return $this Fluent Builder
     */
    
public function setUniqueName(string $uniqueName): self {
        
$this->options['uniqueName'] = $uniqueName;
        return 
$this;
    }

    
/**
     * The SID or unique name of the Network Access Profile that will control which cellular networks the Fleet's SIMs can connect to
     *
     * @param string $networkAccessProfile The SID or unique name of the Network
     *                                     Access Profile of the Fleet
     * @return $this Fluent Builder
     */
    
public function setNetworkAccessProfile(string $networkAccessProfile): self {
        
$this->options['networkAccessProfile'] = $networkAccessProfile;
        return 
$this;
    }

    
/**
     * Provide a friendly representation
     *
     * @return string Machine friendly representation
     */
    
public function __toString(): string {
        
$options http_build_query(Values::of($this->options), ''' ');
        return 
'[Twilio.Supersim.V1.UpdateFleetOptions ' $options ']';
    }
}
Онлайн: 1
Реклама