PATH:
home
/
lab2454c
/
.trash
/
core
/
vendor
/
twilio
/
sdk
/
src
/
Twilio
/
Rest
/
Serverless
/
V1
/
Service
<?php /** * This code was generated by * \ / _ _ _| _ _ * | (_)\/(_)(_|\/| |(/_ v1.0.0 * / / */ namespace Twilio\Rest\Serverless\V1\Service; use Twilio\Options; use Twilio\Values; /** * PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution. */ abstract class EnvironmentOptions { /** * @param string $domainSuffix A URL-friendly name that represents the * environment * @return CreateEnvironmentOptions Options builder */ public static function create(string $domainSuffix = Values::NONE): CreateEnvironmentOptions { return new CreateEnvironmentOptions($domainSuffix); } } class CreateEnvironmentOptions extends Options { /** * @param string $domainSuffix A URL-friendly name that represents the * environment */ public function __construct(string $domainSuffix = Values::NONE) { $this->options['domainSuffix'] = $domainSuffix; } /** * A URL-friendly name that represents the environment and forms part of the domain name. It can be a maximum of 16 characters. * * @param string $domainSuffix A URL-friendly name that represents the * environment * @return $this Fluent Builder */ public function setDomainSuffix(string $domainSuffix): self { $this->options['domainSuffix'] = $domainSuffix; 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.Serverless.V1.CreateEnvironmentOptions ' . $options . ']'; } }
[-] BuildOptions.php
[edit]
[-] FunctionPage.php
[edit]
[+]
Asset
[-] FunctionContext.php
[edit]
[-] FunctionInstance.php
[edit]
[-] AssetList.php
[edit]
[-] BuildContext.php
[edit]
[+]
Environment
[+]
..
[-] AssetInstance.php
[edit]
[-] FunctionList.php
[edit]
[-] BuildInstance.php
[edit]
[-] AssetContext.php
[edit]
[-] EnvironmentOptions.php
[edit]
[+]
Build
[-] BuildList.php
[edit]
[-] EnvironmentContext.php
[edit]
[-] EnvironmentInstance.php
[edit]
[-] EnvironmentPage.php
[edit]
[+]
TwilioFunction
[-] BuildPage.php
[edit]
[-] AssetPage.php
[edit]
[-] EnvironmentList.php
[edit]