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

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

namespace TwilioRestWirelessV1;

use 
TwilioOptions;
use 
TwilioValues;

abstract class 
CommandOptions {
    
/**
     * @param string $sim The sid or unique_name of the Sim resources to read
     * @param string $status The status of the resources to read
     * @param string $direction Only return Commands with this direction value
     * @param string $transport Only return Commands with this transport value
     * @return ReadCommandOptions Options builder
     */
    
public static function read(string $sim Values::NONEstring $status Values::NONEstring $direction Values::NONEstring $transport Values::NONE): ReadCommandOptions {
        return new 
ReadCommandOptions($sim$status$direction$transport);
    }

    
/**
     * @param string $sim The sid or unique_name of the SIM to send the Command to
     * @param string $callbackMethod The HTTP method we use to call callback_url
     * @param string $callbackUrl he URL we call when the Command has finished
     *                            sending
     * @param string $commandMode The mode to use when sending the SMS message
     * @param string $includeSid Whether to include the SID of the command in the
     *                           message body
     * @param bool $deliveryReceiptRequested Whether to request delivery receipt
     *                                       from the recipient
     * @return CreateCommandOptions Options builder
     */
    
public static function create(string $sim Values::NONEstring $callbackMethod Values::NONEstring $callbackUrl Values::NONEstring $commandMode Values::NONEstring $includeSid Values::NONEbool $deliveryReceiptRequested Values::NONE): CreateCommandOptions {
        return new 
CreateCommandOptions($sim$callbackMethod$callbackUrl$commandMode$includeSid$deliveryReceiptRequested);
    }
}

class 
ReadCommandOptions extends Options {
    
/**
     * @param string $sim The sid or unique_name of the Sim resources to read
     * @param string $status The status of the resources to read
     * @param string $direction Only return Commands with this direction value
     * @param string $transport Only return Commands with this transport value
     */
    
public function __construct(string $sim Values::NONEstring $status Values::NONEstring $direction Values::NONEstring $transport Values::NONE) {
        
$this->options['sim'] = $sim;
        
$this->options['status'] = $status;
        
$this->options['direction'] = $direction;
        
$this->options['transport'] = $transport;
    }

    
/**
     * The `sid` or `unique_name` of the [Sim resources](https://www.twilio.com/docs/wireless/api/sim-resource) to read.
     *
     * @param string $sim The sid or unique_name of the Sim resources to read
     * @return $this Fluent Builder
     */
    
public function setSim(string $sim): self {
        
$this->options['sim'] = $sim;
        return 
$this;
    }

    
/**
     * The status of the resources to read. Can be: `queued`, `sent`, `delivered`, `received`, or `failed`.
     *
     * @param string $status The status of the resources to read
     * @return $this Fluent Builder
     */
    
public function setStatus(string $status): self {
        
$this->options['status'] = $status;
        return 
$this;
    }

    
/**
     * Only return Commands with this direction value.
     *
     * @param string $direction Only return Commands with this direction value
     * @return $this Fluent Builder
     */
    
public function setDirection(string $direction): self {
        
$this->options['direction'] = $direction;
        return 
$this;
    }

    
/**
     * Only return Commands with this transport value. Can be: `sms` or `ip`.
     *
     * @param string $transport Only return Commands with this transport value
     * @return $this Fluent Builder
     */
    
public function setTransport(string $transport): self {
        
$this->options['transport'] = $transport;
        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.Wireless.V1.ReadCommandOptions ' $options ']';
    }
}

class 
CreateCommandOptions extends Options {
    
/**
     * @param string $sim The sid or unique_name of the SIM to send the Command to
     * @param string $callbackMethod The HTTP method we use to call callback_url
     * @param string $callbackUrl he URL we call when the Command has finished
     *                            sending
     * @param string $commandMode The mode to use when sending the SMS message
     * @param string $includeSid Whether to include the SID of the command in the
     *                           message body
     * @param bool $deliveryReceiptRequested Whether to request delivery receipt
     *                                       from the recipient
     */
    
public function __construct(string $sim Values::NONEstring $callbackMethod Values::NONEstring $callbackUrl Values::NONEstring $commandMode Values::NONEstring $includeSid Values::NONEbool $deliveryReceiptRequested Values::NONE) {
        
$this->options['sim'] = $sim;
        
$this->options['callbackMethod'] = $callbackMethod;
        
$this->options['callbackUrl'] = $callbackUrl;
        
$this->options['commandMode'] = $commandMode;
        
$this->options['includeSid'] = $includeSid;
        
$this->options['deliveryReceiptRequested'] = $deliveryReceiptRequested;
    }

    
/**
     * The `sid` or `unique_name` of the [SIM](https://www.twilio.com/docs/wireless/api/sim-resource) to send the Command to.
     *
     * @param string $sim The sid or unique_name of the SIM to send the Command to
     * @return $this Fluent Builder
     */
    
public function setSim(string $sim): self {
        
$this->options['sim'] = $sim;
        return 
$this;
    }

    
/**
     * The HTTP method we use to call `callback_url`. Can be: `POST` or `GET`, and the default is `POST`.
     *
     * @param string $callbackMethod The HTTP method we use to call callback_url
     * @return $this Fluent Builder
     */
    
public function setCallbackMethod(string $callbackMethod): self {
        
$this->options['callbackMethod'] = $callbackMethod;
        return 
$this;
    }

    
/**
     * The URL we call using the `callback_url` when the Command has finished sending, whether the command was delivered or it failed.
     *
     * @param string $callbackUrl he URL we call when the Command has finished
     *                            sending
     * @return $this Fluent Builder
     */
    
public function setCallbackUrl(string $callbackUrl): self {
        
$this->options['callbackUrl'] = $callbackUrl;
        return 
$this;
    }

    
/**
     * The mode to use when sending the SMS message. Can be: `text` or `binary`. The default SMS mode is `text`.
     *
     * @param string $commandMode The mode to use when sending the SMS message
     * @return $this Fluent Builder
     */
    
public function setCommandMode(string $commandMode): self {
        
$this->options['commandMode'] = $commandMode;
        return 
$this;
    }

    
/**
     * Whether to include the SID of the command in the message body. Can be: `none`, `start`, or `end`, and the default behavior is `none`. When sending a Command to a SIM in text mode, we can automatically include the SID of the Command in the message body, which could be used to ensure that the device does not process the same Command more than once.  A value of `start` will prepend the message with the Command SID, and `end` will append it to the end, separating the Command SID from the message body with a space. The length of the Command SID is included in the 160 character limit so the SMS body must be 128 characters or less before the Command SID is included.
     *
     * @param string $includeSid Whether to include the SID of the command in the
     *                           message body
     * @return $this Fluent Builder
     */
    
public function setIncludeSid(string $includeSid): self {
        
$this->options['includeSid'] = $includeSid;
        return 
$this;
    }

    
/**
     * Whether to request delivery receipt from the recipient. For Commands that request delivery receipt, the Command state transitions to 'delivered' once the server has received a delivery receipt from the device. The default value is `true`.
     *
     * @param bool $deliveryReceiptRequested Whether to request delivery receipt
     *                                       from the recipient
     * @return $this Fluent Builder
     */
    
public function setDeliveryReceiptRequested(bool $deliveryReceiptRequested): self {
        
$this->options['deliveryReceiptRequested'] = $deliveryReceiptRequested;
        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.Wireless.V1.CreateCommandOptions ' $options ']';
    }
}
Онлайн: 1
Реклама