modern-events-calendar-lite/app/api/Twilio/Rest/Serverless/V1/Service/Environment/DeploymentOptions.php

81 lines
2 KiB
PHP
Raw Normal View History

2024-10-15 12:04:03 +02:00
<?php
/**
* This code was generated by
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
*
* Twilio - Serverless
* 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\Serverless\V1\Service\Environment;
use Twilio\Options;
use Twilio\Values;
abstract class DeploymentOptions
{
/**
* @param string $buildSid The SID of the Build for the Deployment.
* @return CreateDeploymentOptions Options builder
*/
public static function create(
string $buildSid = Values::NONE
): CreateDeploymentOptions
{
return new CreateDeploymentOptions(
$buildSid
);
}
}
class CreateDeploymentOptions extends Options
{
/**
* @param string $buildSid The SID of the Build for the Deployment.
*/
public function __construct(
string $buildSid = Values::NONE
) {
$this->options['buildSid'] = $buildSid;
}
/**
* The SID of the Build for the Deployment.
*
* @param string $buildSid The SID of the Build for the Deployment.
* @return $this Fluent Builder
*/
public function setBuildSid(string $buildSid): self
{
$this->options['buildSid'] = $buildSid;
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.CreateDeploymentOptions ' . $options . ']';
}
}