!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/sms.picotech.app/public_html/vendor/twilio/sdk/src/Twilio/Rest/Autopilot/V1/   drwxrwxr-x
Free 28.6 GB of 117.98 GB (24.25%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     AssistantOptions.php (13.04 KB)      -rw-rw-r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

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

namespace Twilio\Rest\Autopilot\V1;

use 
Twilio\Options;
use 
Twilio\Values;

/**
 * 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 AssistantOptions {
    
/**
     * @param string $friendlyName A string to describe the new resource
     * @param bool $logQueries Whether queries should be logged and kept after
     *                         training
     * @param string $uniqueName An application-defined string that uniquely
     *                           identifies the new resource
     * @param string $callbackUrl Reserved
     * @param string $callbackEvents Reserved
     * @param array $styleSheet A JSON string that defines the Assistant's style
     *                          sheet
     * @param array $defaults A JSON object that defines the Assistant's default
     *                        tasks for various scenarios
     * @return CreateAssistantOptions Options builder
     */
    
public static function create(string $friendlyName Values::NONEbool $logQueries Values::NONEstring $uniqueName Values::NONEstring $callbackUrl Values::NONEstring $callbackEvents Values::NONE, array $styleSheet Values::ARRAY_NONE, array $defaults Values::ARRAY_NONE): CreateAssistantOptions {
        return new 
CreateAssistantOptions($friendlyName$logQueries$uniqueName$callbackUrl$callbackEvents$styleSheet$defaults);
    }

    
/**
     * @param string $friendlyName A string to describe the resource
     * @param bool $logQueries Whether queries should be logged and kept after
     *                         training
     * @param string $uniqueName An application-defined string that uniquely
     *                           identifies the resource
     * @param string $callbackUrl Reserved
     * @param string $callbackEvents Reserved
     * @param array $styleSheet A JSON string that defines the Assistant's style
     *                          sheet
     * @param array $defaults A JSON object that defines the Assistant's [default
     *                        tasks](https://www.twilio.com/docs/autopilot/api/assistant/defaults) for various scenarios
     * @param string $developmentStage A string describing the state of the
     *                                 assistant.
     * @return UpdateAssistantOptions Options builder
     */
    
public static function update(string $friendlyName Values::NONEbool $logQueries Values::NONEstring $uniqueName Values::NONEstring $callbackUrl Values::NONEstring $callbackEvents Values::NONE, array $styleSheet Values::ARRAY_NONE, array $defaults Values::ARRAY_NONEstring $developmentStage Values::NONE): UpdateAssistantOptions {
        return new 
UpdateAssistantOptions($friendlyName$logQueries$uniqueName$callbackUrl$callbackEvents$styleSheet$defaults$developmentStage);
    }
}

class 
CreateAssistantOptions extends Options {
    
/**
     * @param string $friendlyName A string to describe the new resource
     * @param bool $logQueries Whether queries should be logged and kept after
     *                         training
     * @param string $uniqueName An application-defined string that uniquely
     *                           identifies the new resource
     * @param string $callbackUrl Reserved
     * @param string $callbackEvents Reserved
     * @param array $styleSheet A JSON string that defines the Assistant's style
     *                          sheet
     * @param array $defaults A JSON object that defines the Assistant's default
     *                        tasks for various scenarios
     */
    
public function __construct(string $friendlyName Values::NONEbool $logQueries Values::NONEstring $uniqueName Values::NONEstring $callbackUrl Values::NONEstring $callbackEvents Values::NONE, array $styleSheet Values::ARRAY_NONE, array $defaults Values::ARRAY_NONE) {
        
$this->options['friendlyName'] = $friendlyName;
        
$this->options['logQueries'] = $logQueries;
        
$this->options['uniqueName'] = $uniqueName;
        
$this->options['callbackUrl'] = $callbackUrl;
        
$this->options['callbackEvents'] = $callbackEvents;
        
$this->options['styleSheet'] = $styleSheet;
        
$this->options['defaults'] = $defaults;
    }

    
/**
     * A descriptive string that you create to describe the new resource. It is not unique and can be up to 255 characters long.
     *
     * @param string $friendlyName A string to describe the new resource
     * @return $this Fluent Builder
     */
    
public function setFriendlyName(string $friendlyName): self {
        
$this->options['friendlyName'] = $friendlyName;
        return 
$this;
    }

    
/**
     * Whether queries should be logged and kept after training. Can be: `true` or `false` and defaults to `true`. If `true`, queries are stored for 30 days, and then deleted. If `false`, no queries are stored.
     *
     * @param bool $logQueries Whether queries should be logged and kept after
     *                         training
     * @return $this Fluent Builder
     */
    
public function setLogQueries(bool $logQueries): self {
        
$this->options['logQueries'] = $logQueries;
        return 
$this;
    }

    
/**
     * An application-defined string that uniquely identifies the new resource. It can be used as an alternative to the `sid` in the URL path to address the resource. The first 64 characters must be unique.
     *
     * @param string $uniqueName An application-defined string that uniquely
     *                           identifies the new resource
     * @return $this Fluent Builder
     */
    
public function setUniqueName(string $uniqueName): self {
        
$this->options['uniqueName'] = $uniqueName;
        return 
$this;
    }

    
/**
     * Reserved.
     *
     * @param string $callbackUrl Reserved
     * @return $this Fluent Builder
     */
    
public function setCallbackUrl(string $callbackUrl): self {
        
$this->options['callbackUrl'] = $callbackUrl;
        return 
$this;
    }

    
/**
     * Reserved.
     *
     * @param string $callbackEvents Reserved
     * @return $this Fluent Builder
     */
    
public function setCallbackEvents(string $callbackEvents): self {
        
$this->options['callbackEvents'] = $callbackEvents;
        return 
$this;
    }

    
/**
     * The JSON string that defines the Assistant's [style sheet](https://www.twilio.com/docs/autopilot/api/assistant/stylesheet)
     *
     * @param array $styleSheet A JSON string that defines the Assistant's style
     *                          sheet
     * @return $this Fluent Builder
     */
    
public function setStyleSheet(array $styleSheet): self {
        
$this->options['styleSheet'] = $styleSheet;
        return 
$this;
    }

    
/**
     * A JSON object that defines the Assistant's [default tasks](https://www.twilio.com/docs/autopilot/api/assistant/defaults) for various scenarios, including initiation actions and fallback tasks.
     *
     * @param array $defaults A JSON object that defines the Assistant's default
     *                        tasks for various scenarios
     * @return $this Fluent Builder
     */
    
public function setDefaults(array $defaults): self {
        
$this->options['defaults'] = $defaults;
        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.Autopilot.V1.CreateAssistantOptions ' $options ']';
    }
}

class 
UpdateAssistantOptions extends Options {
    
/**
     * @param string $friendlyName A string to describe the resource
     * @param bool $logQueries Whether queries should be logged and kept after
     *                         training
     * @param string $uniqueName An application-defined string that uniquely
     *                           identifies the resource
     * @param string $callbackUrl Reserved
     * @param string $callbackEvents Reserved
     * @param array $styleSheet A JSON string that defines the Assistant's style
     *                          sheet
     * @param array $defaults A JSON object that defines the Assistant's [default
     *                        tasks](https://www.twilio.com/docs/autopilot/api/assistant/defaults) for various scenarios
     * @param string $developmentStage A string describing the state of the
     *                                 assistant.
     */
    
public function __construct(string $friendlyName Values::NONEbool $logQueries Values::NONEstring $uniqueName Values::NONEstring $callbackUrl Values::NONEstring $callbackEvents Values::NONE, array $styleSheet Values::ARRAY_NONE, array $defaults Values::ARRAY_NONEstring $developmentStage Values::NONE) {
        
$this->options['friendlyName'] = $friendlyName;
        
$this->options['logQueries'] = $logQueries;
        
$this->options['uniqueName'] = $uniqueName;
        
$this->options['callbackUrl'] = $callbackUrl;
        
$this->options['callbackEvents'] = $callbackEvents;
        
$this->options['styleSheet'] = $styleSheet;
        
$this->options['defaults'] = $defaults;
        
$this->options['developmentStage'] = $developmentStage;
    }

    
/**
     * A descriptive string that you create to describe the resource. It is not unique and can be up to 255 characters long.
     *
     * @param string $friendlyName A string to describe the resource
     * @return $this Fluent Builder
     */
    
public function setFriendlyName(string $friendlyName): self {
        
$this->options['friendlyName'] = $friendlyName;
        return 
$this;
    }

    
/**
     * Whether queries should be logged and kept after training. Can be: `true` or `false` and defaults to `true`. If `true`, queries are stored for 30 days, and then deleted. If `false`, no queries are stored.
     *
     * @param bool $logQueries Whether queries should be logged and kept after
     *                         training
     * @return $this Fluent Builder
     */
    
public function setLogQueries(bool $logQueries): self {
        
$this->options['logQueries'] = $logQueries;
        return 
$this;
    }

    
/**
     * An application-defined string that uniquely identifies the resource. It can be used as an alternative to the `sid` in the URL path to address the resource. The first 64 characters must be unique.
     *
     * @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;
    }

    
/**
     * Reserved.
     *
     * @param string $callbackUrl Reserved
     * @return $this Fluent Builder
     */
    
public function setCallbackUrl(string $callbackUrl): self {
        
$this->options['callbackUrl'] = $callbackUrl;
        return 
$this;
    }

    
/**
     * Reserved.
     *
     * @param string $callbackEvents Reserved
     * @return $this Fluent Builder
     */
    
public function setCallbackEvents(string $callbackEvents): self {
        
$this->options['callbackEvents'] = $callbackEvents;
        return 
$this;
    }

    
/**
     * The JSON string that defines the Assistant's [style sheet](https://www.twilio.com/docs/autopilot/api/assistant/stylesheet)
     *
     * @param array $styleSheet A JSON string that defines the Assistant's style
     *                          sheet
     * @return $this Fluent Builder
     */
    
public function setStyleSheet(array $styleSheet): self {
        
$this->options['styleSheet'] = $styleSheet;
        return 
$this;
    }

    
/**
     * A JSON object that defines the Assistant's [default tasks](https://www.twilio.com/docs/autopilot/api/assistant/defaults) for various scenarios, including initiation actions and fallback tasks.
     *
     * @param array $defaults A JSON object that defines the Assistant's [default
     *                        tasks](https://www.twilio.com/docs/autopilot/api/assistant/defaults) for various scenarios
     * @return $this Fluent Builder
     */
    
public function setDefaults(array $defaults): self {
        
$this->options['defaults'] = $defaults;
        return 
$this;
    }

    
/**
     * A string describing the state of the assistant.
     *
     * @param string $developmentStage A string describing the state of the
     *                                 assistant.
     * @return $this Fluent Builder
     */
    
public function setDevelopmentStage(string $developmentStage): self {
        
$this->options['developmentStage'] = $developmentStage;
        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.Autopilot.V1.UpdateAssistantOptions ' $options ']';
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0045 ]--