modern-events-calendar-lite/app/api/Twilio/Rest/Preview/HostedNumbers/AuthorizationDocument/DependentHostedNumberOrderOptions.php

149 lines
6.7 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\HostedNumbers\AuthorizationDocument;
use Twilio\Options;
use Twilio\Values;
abstract class DependentHostedNumberOrderOptions
{
/**
* @param string $status Status of an instance resource. It can hold one of the values: 1. opened 2. signing, 3. signed LOA, 4. canceled, 5. failed. See the section entitled [Status Values](https://www.twilio.com/docs/api/phone-numbers/hosted-number-authorization-documents#status-values) for more information on each of these statuses.
* @param string $phoneNumber An E164 formatted phone number hosted by this HostedNumberOrder.
* @param string $incomingPhoneNumberSid A 34 character string that uniquely identifies the IncomingPhoneNumber resource created by this HostedNumberOrder.
* @param string $friendlyName A human readable description of this resource, up to 64 characters.
* @param string $uniqueName Provides a unique and addressable name to be assigned to this HostedNumberOrder, assigned by the developer, to be optionally used in addition to SID.
* @return ReadDependentHostedNumberOrderOptions Options builder
*/
public static function read(
string $status = Values::NONE,
string $phoneNumber = Values::NONE,
string $incomingPhoneNumberSid = Values::NONE,
string $friendlyName = Values::NONE,
string $uniqueName = Values::NONE
): ReadDependentHostedNumberOrderOptions
{
return new ReadDependentHostedNumberOrderOptions(
$status,
$phoneNumber,
$incomingPhoneNumberSid,
$friendlyName,
$uniqueName
);
}
}
class ReadDependentHostedNumberOrderOptions extends Options
{
/**
* @param string $status Status of an instance resource. It can hold one of the values: 1. opened 2. signing, 3. signed LOA, 4. canceled, 5. failed. See the section entitled [Status Values](https://www.twilio.com/docs/api/phone-numbers/hosted-number-authorization-documents#status-values) for more information on each of these statuses.
* @param string $phoneNumber An E164 formatted phone number hosted by this HostedNumberOrder.
* @param string $incomingPhoneNumberSid A 34 character string that uniquely identifies the IncomingPhoneNumber resource created by this HostedNumberOrder.
* @param string $friendlyName A human readable description of this resource, up to 64 characters.
* @param string $uniqueName Provides a unique and addressable name to be assigned to this HostedNumberOrder, assigned by the developer, to be optionally used in addition to SID.
*/
public function __construct(
string $status = Values::NONE,
string $phoneNumber = Values::NONE,
string $incomingPhoneNumberSid = Values::NONE,
string $friendlyName = Values::NONE,
string $uniqueName = Values::NONE
) {
$this->options['status'] = $status;
$this->options['phoneNumber'] = $phoneNumber;
$this->options['incomingPhoneNumberSid'] = $incomingPhoneNumberSid;
$this->options['friendlyName'] = $friendlyName;
$this->options['uniqueName'] = $uniqueName;
}
/**
* Status of an instance resource. It can hold one of the values: 1. opened 2. signing, 3. signed LOA, 4. canceled, 5. failed. See the section entitled [Status Values](https://www.twilio.com/docs/api/phone-numbers/hosted-number-authorization-documents#status-values) for more information on each of these statuses.
*
* @param string $status Status of an instance resource. It can hold one of the values: 1. opened 2. signing, 3. signed LOA, 4. canceled, 5. failed. See the section entitled [Status Values](https://www.twilio.com/docs/api/phone-numbers/hosted-number-authorization-documents#status-values) for more information on each of these statuses.
* @return $this Fluent Builder
*/
public function setStatus(string $status): self
{
$this->options['status'] = $status;
return $this;
}
/**
* An E164 formatted phone number hosted by this HostedNumberOrder.
*
* @param string $phoneNumber An E164 formatted phone number hosted by this HostedNumberOrder.
* @return $this Fluent Builder
*/
public function setPhoneNumber(string $phoneNumber): self
{
$this->options['phoneNumber'] = $phoneNumber;
return $this;
}
/**
* A 34 character string that uniquely identifies the IncomingPhoneNumber resource created by this HostedNumberOrder.
*
* @param string $incomingPhoneNumberSid A 34 character string that uniquely identifies the IncomingPhoneNumber resource created by this HostedNumberOrder.
* @return $this Fluent Builder
*/
public function setIncomingPhoneNumberSid(string $incomingPhoneNumberSid): self
{
$this->options['incomingPhoneNumberSid'] = $incomingPhoneNumberSid;
return $this;
}
/**
* A human readable description of this resource, up to 64 characters.
*
* @param string $friendlyName A human readable description of this resource, up to 64 characters.
* @return $this Fluent Builder
*/
public function setFriendlyName(string $friendlyName): self
{
$this->options['friendlyName'] = $friendlyName;
return $this;
}
/**
* Provides a unique and addressable name to be assigned to this HostedNumberOrder, assigned by the developer, to be optionally used in addition to SID.
*
* @param string $uniqueName Provides a unique and addressable name to be assigned to this HostedNumberOrder, assigned by the developer, to be optionally used in addition to SID.
* @return $this Fluent Builder
*/
public function setUniqueName(string $uniqueName): self
{
$this->options['uniqueName'] = $uniqueName;
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.HostedNumbers.ReadDependentHostedNumberOrderOptions ' . $options . ']';
}
}