PATH:
home
/
lab2454c
/
.trash
/
core
/
vendor
/
twilio
/
sdk
/
src
/
Twilio
/
Rest
/
Preview
/
Understand
/
Assistant
/
FieldType
<?php /** * This code was generated by * \ / _ _ _| _ _ * | (_)\/(_)(_|\/| |(/_ v1.0.0 * / / */ namespace Twilio\Rest\Preview\Understand\Assistant\FieldType; 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 FieldValueOptions { /** * @param string $language An ISO language-country string of the value. For * example: en-US * @return ReadFieldValueOptions Options builder */ public static function read(string $language = Values::NONE): ReadFieldValueOptions { return new ReadFieldValueOptions($language); } /** * @param string $synonymOf A value that indicates this field value is a * synonym of. Empty if the value is not a synonym. * @return CreateFieldValueOptions Options builder */ public static function create(string $synonymOf = Values::NONE): CreateFieldValueOptions { return new CreateFieldValueOptions($synonymOf); } } class ReadFieldValueOptions extends Options { /** * @param string $language An ISO language-country string of the value. For * example: en-US */ public function __construct(string $language = Values::NONE) { $this->options['language'] = $language; } /** * An ISO language-country string of the value. For example: *en-US* * * @param string $language An ISO language-country string of the value. For * example: en-US * @return $this Fluent Builder */ public function setLanguage(string $language): self { $this->options['language'] = $language; 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.ReadFieldValueOptions ' . $options . ']'; } } class CreateFieldValueOptions extends Options { /** * @param string $synonymOf A value that indicates this field value is a * synonym of. Empty if the value is not a synonym. */ public function __construct(string $synonymOf = Values::NONE) { $this->options['synonymOf'] = $synonymOf; } /** * A value that indicates this field value is a synonym of. Empty if the value is not a synonym. * * @param string $synonymOf A value that indicates this field value is a * synonym of. Empty if the value is not a synonym. * @return $this Fluent Builder */ public function setSynonymOf(string $synonymOf): self { $this->options['synonymOf'] = $synonymOf; 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.CreateFieldValueOptions ' . $options . ']'; } }
[-] FieldValuePage.php
[edit]
[-] FieldValueContext.php
[edit]
[+]
..
[-] FieldValueOptions.php
[edit]
[-] FieldValueInstance.php
[edit]
[-] FieldValueList.php
[edit]