Linux business57.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
Server IP : 199.188.201.191 & Your IP : 3.136.11.217
Domains :
Cant Read [ /etc/named.conf ]
User : derozboy
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
derozboy /
velxotano-group.pro /
Assistant /
Delete
Unzip
Name
Size
Permission
Date
Action
FieldType
[ DIR ]
drwxr-xr-x
2025-04-25 20:03
Task
[ DIR ]
drwxr-xr-x
2025-04-26 03:36
.htaccess
237
B
-r-xr-xr-x
2025-04-26 03:36
DefaultsContext.php
2.43
KB
-rw-r--r--
2022-02-10 05:51
DefaultsInstance.php
3.5
KB
-rw-r--r--
2022-02-10 05:51
DefaultsList.php
1.3
KB
-rw-r--r--
2022-02-10 05:51
DialogueInstance.php
3.43
KB
-rw-r--r--
2022-02-10 05:51
FieldTypeContext.php
4.77
KB
-rw-r--r--
2022-02-10 05:51
FieldTypeInstance.php
4.8
KB
-rw-r--r--
2022-02-10 05:51
FieldTypeList.php
5.83
KB
-rw-r--r--
2022-02-10 05:51
FieldTypeOptions.php
3.9
KB
-rw-r--r--
2022-02-10 05:51
ModelBuildContext.php
2.98
KB
-rw-r--r--
2022-02-10 05:51
ModelBuildInstance.php
4.68
KB
-rw-r--r--
2022-02-10 05:51
ModelBuildList.php
5.75
KB
-rw-r--r--
2022-02-10 05:51
ModelBuildOptions.php
4.48
KB
-rw-r--r--
2022-02-10 05:51
QueryOptions.php
8.3
KB
-rw-r--r--
2022-02-10 05:51
StyleSheetContext.php
2.46
KB
-rw-r--r--
2022-02-10 05:51
StyleSheetInstance.php
3.53
KB
-rw-r--r--
2022-02-10 05:51
StyleSheetList.php
1.31
KB
-rw-r--r--
2022-02-10 05:51
StyleSheetOptions.php
1.78
KB
-rw-r--r--
2022-02-10 05:51
StyleSheetPage.php
1.39
KB
-rw-r--r--
2022-02-10 05:51
TaskInstance.php
5.5
KB
-rw-r--r--
2022-02-10 05:51
TaskList.php
5.89
KB
-rw-r--r--
2022-02-10 05:51
TaskOptions.php
7.18
KB
-rw-r--r--
2022-02-10 05:51
TaskPage.php
1.36
KB
-rw-r--r--
2022-02-10 05:51
WebhookContext.php
3.11
KB
-rw-r--r--
2022-02-10 05:51
WebhookInstance.php
4.65
KB
-rw-r--r--
2022-02-10 05:51
WebhookList.php
6.13
KB
-rw-r--r--
2022-02-10 05:51
WebhookOptions.php
5.45
KB
-rw-r--r--
2022-02-10 05:51
Save
Rename
<?php /** * This code was generated by * \ / _ _ _| _ _ * | (_)\/(_)(_|\/| |(/_ v1.0.0 * / / */ namespace Twilio\Rest\Autopilot\V1\Assistant; 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 ModelBuildOptions { /** * @param string $statusCallback The URL we should call using a POST method to * send status information to your application * @param string $uniqueName An application-defined string that uniquely * identifies the new resource * @return CreateModelBuildOptions Options builder */ public static function create(string $statusCallback = Values::NONE, string $uniqueName = Values::NONE): CreateModelBuildOptions { return new CreateModelBuildOptions($statusCallback, $uniqueName); } /** * @param string $uniqueName An application-defined string that uniquely * identifies the resource * @return UpdateModelBuildOptions Options builder */ public static function update(string $uniqueName = Values::NONE): UpdateModelBuildOptions { return new UpdateModelBuildOptions($uniqueName); } } class CreateModelBuildOptions extends Options { /** * @param string $statusCallback The URL we should call using a POST method to * send status information to your application * @param string $uniqueName An application-defined string that uniquely * identifies the new resource */ public function __construct(string $statusCallback = Values::NONE, string $uniqueName = Values::NONE) { $this->options['statusCallback'] = $statusCallback; $this->options['uniqueName'] = $uniqueName; } /** * The URL we should call using a POST method to send status information to your application. * * @param string $statusCallback The URL we should call using a POST method to * send status information to your application * @return $this Fluent Builder */ public function setStatusCallback(string $statusCallback): self { $this->options['statusCallback'] = $statusCallback; return $this; } /** * An application-defined string that uniquely identifies the new resource. This value must be a unique string of no more than 64 characters. It can be used as an alternative to the `sid` in the URL path to address the resource. * * @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; } /** * 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.CreateModelBuildOptions ' . $options . ']'; } } class UpdateModelBuildOptions extends Options { /** * @param string $uniqueName An application-defined string that uniquely * identifies the resource */ public function __construct(string $uniqueName = Values::NONE) { $this->options['uniqueName'] = $uniqueName; } /** * An application-defined string that uniquely identifies the resource. This value must be a unique string of no more than 64 characters. It can be used as an alternative to the `sid` in the URL path 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; } /** * 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.UpdateModelBuildOptions ' . $options . ']'; } }