modern-events-calendar-lite/app/api/Twilio/Rest/Preview/Understand/Assistant/QueryOptions.php

275 lines
9.4 KiB
PHP
Raw Normal View History

2024-10-15 12:04:03 +02:00
<?php
/**
* This code was generated by
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
*
* Twilio - Preview
* This is the public Twilio REST API.
*
* NOTE: This class is auto generated by OpenAPI Generator.
* https://openapi-generator.tech
* Do not edit the class manually.
*/
namespace Twilio\Rest\Preview\Understand\Assistant;
use Twilio\Options;
use Twilio\Values;
abstract class QueryOptions
{
/**
* @param string $tasks Constraints the query to a set of tasks. Useful when you need to constrain the paths the user can take. Tasks should be comma separated *task-unique-name-1*, *task-unique-name-2*
* @param string $modelBuild The Model Build Sid or unique name of the Model Build to be queried.
* @param string $field Constraints the query to a given Field with an task. Useful when you know the Field you are expecting. It accepts one field in the format *task-unique-name-1*:*field-unique-name*
* @return CreateQueryOptions Options builder
*/
public static function create(
string $tasks = Values::NONE,
string $modelBuild = Values::NONE,
string $field = Values::NONE
): CreateQueryOptions
{
return new CreateQueryOptions(
$tasks,
$modelBuild,
$field
);
}
/**
* @param string $language An ISO language-country string of the sample.
* @param string $modelBuild The Model Build Sid or unique name of the Model Build to be queried.
* @param string $status A string that described the query status. The values can be: pending_review, reviewed, discarded
* @return ReadQueryOptions Options builder
*/
public static function read(
string $language = Values::NONE,
string $modelBuild = Values::NONE,
string $status = Values::NONE
): ReadQueryOptions
{
return new ReadQueryOptions(
$language,
$modelBuild,
$status
);
}
/**
* @param string $sampleSid An optional reference to the Sample created from this query.
* @param string $status A string that described the query status. The values can be: pending_review, reviewed, discarded
* @return UpdateQueryOptions Options builder
*/
public static function update(
string $sampleSid = Values::NONE,
string $status = Values::NONE
): UpdateQueryOptions
{
return new UpdateQueryOptions(
$sampleSid,
$status
);
}
}
class CreateQueryOptions extends Options
{
/**
* @param string $tasks Constraints the query to a set of tasks. Useful when you need to constrain the paths the user can take. Tasks should be comma separated *task-unique-name-1*, *task-unique-name-2*
* @param string $modelBuild The Model Build Sid or unique name of the Model Build to be queried.
* @param string $field Constraints the query to a given Field with an task. Useful when you know the Field you are expecting. It accepts one field in the format *task-unique-name-1*:*field-unique-name*
*/
public function __construct(
string $tasks = Values::NONE,
string $modelBuild = Values::NONE,
string $field = Values::NONE
) {
$this->options['tasks'] = $tasks;
$this->options['modelBuild'] = $modelBuild;
$this->options['field'] = $field;
}
/**
* Constraints the query to a set of tasks. Useful when you need to constrain the paths the user can take. Tasks should be comma separated *task-unique-name-1*, *task-unique-name-2*
*
* @param string $tasks Constraints the query to a set of tasks. Useful when you need to constrain the paths the user can take. Tasks should be comma separated *task-unique-name-1*, *task-unique-name-2*
* @return $this Fluent Builder
*/
public function setTasks(string $tasks): self
{
$this->options['tasks'] = $tasks;
return $this;
}
/**
* The Model Build Sid or unique name of the Model Build to be queried.
*
* @param string $modelBuild The Model Build Sid or unique name of the Model Build to be queried.
* @return $this Fluent Builder
*/
public function setModelBuild(string $modelBuild): self
{
$this->options['modelBuild'] = $modelBuild;
return $this;
}
/**
* Constraints the query to a given Field with an task. Useful when you know the Field you are expecting. It accepts one field in the format *task-unique-name-1*:*field-unique-name*
*
* @param string $field Constraints the query to a given Field with an task. Useful when you know the Field you are expecting. It accepts one field in the format *task-unique-name-1*:*field-unique-name*
* @return $this Fluent Builder
*/
public function setField(string $field): self
{
$this->options['field'] = $field;
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.Preview.Understand.CreateQueryOptions ' . $options . ']';
}
}
class ReadQueryOptions extends Options
{
/**
* @param string $language An ISO language-country string of the sample.
* @param string $modelBuild The Model Build Sid or unique name of the Model Build to be queried.
* @param string $status A string that described the query status. The values can be: pending_review, reviewed, discarded
*/
public function __construct(
string $language = Values::NONE,
string $modelBuild = Values::NONE,
string $status = Values::NONE
) {
$this->options['language'] = $language;
$this->options['modelBuild'] = $modelBuild;
$this->options['status'] = $status;
}
/**
* An ISO language-country string of the sample.
*
* @param string $language An ISO language-country string of the sample.
* @return $this Fluent Builder
*/
public function setLanguage(string $language): self
{
$this->options['language'] = $language;
return $this;
}
/**
* The Model Build Sid or unique name of the Model Build to be queried.
*
* @param string $modelBuild The Model Build Sid or unique name of the Model Build to be queried.
* @return $this Fluent Builder
*/
public function setModelBuild(string $modelBuild): self
{
$this->options['modelBuild'] = $modelBuild;
return $this;
}
/**
* A string that described the query status. The values can be: pending_review, reviewed, discarded
*
* @param string $status A string that described the query status. The values can be: pending_review, reviewed, discarded
* @return $this Fluent Builder
*/
public function setStatus(string $status): self
{
$this->options['status'] = $status;
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.Preview.Understand.ReadQueryOptions ' . $options . ']';
}
}
class UpdateQueryOptions extends Options
{
/**
* @param string $sampleSid An optional reference to the Sample created from this query.
* @param string $status A string that described the query status. The values can be: pending_review, reviewed, discarded
*/
public function __construct(
string $sampleSid = Values::NONE,
string $status = Values::NONE
) {
$this->options['sampleSid'] = $sampleSid;
$this->options['status'] = $status;
}
/**
* An optional reference to the Sample created from this query.
*
* @param string $sampleSid An optional reference to the Sample created from this query.
* @return $this Fluent Builder
*/
public function setSampleSid(string $sampleSid): self
{
$this->options['sampleSid'] = $sampleSid;
return $this;
}
/**
* A string that described the query status. The values can be: pending_review, reviewed, discarded
*
* @param string $status A string that described the query status. The values can be: pending_review, reviewed, discarded
* @return $this Fluent Builder
*/
public function setStatus(string $status): self
{
$this->options['status'] = $status;
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.Preview.Understand.UpdateQueryOptions ' . $options . ']';
}
}