<?php
/**
* This code was generated by
* \ / _ _ _| _ _
* | (_)\/(_)(_|\/| |(/_ v1.0.0
* / /
*/
namespace Twilio\Rest\IpMessaging\V1\Service;
use Twilio\Options;
use Twilio\Values;
abstract class ChannelOptions {
/**
* @param string $friendlyName The friendly_name
* @param string $uniqueName The unique_name
* @param string $attributes The attributes
* @param string $type The type
* @return CreateChannelOptions Options builder
*/
public static function create(string $friendlyName = Values::NONE, string $uniqueName = Values::NONE, string $attributes = Values::NONE, string $type = Values::NONE): CreateChannelOptions {
return new CreateChannelOptions($friendlyName, $uniqueName, $attributes, $type);
}
/**
* @param string[] $type The type
* @return ReadChannelOptions Options builder
*/
public static function read(array $type = Values::ARRAY_NONE): ReadChannelOptions {
return new ReadChannelOptions($type);
}
/**
* @param string $friendlyName The friendly_name
* @param string $uniqueName The unique_name
* @param string $attributes The attributes
* @return UpdateChannelOptions Options builder
*/
public static function update(string $friendlyName = Values::NONE, string $uniqueName = Values::NONE, string $attributes = Values::NONE): UpdateChannelOptions {
return new UpdateChannelOptions($friendlyName, $uniqueName, $attributes);
}
}
class CreateChannelOptions extends Options {
/**
* @param string $friendlyName The friendly_name
* @param string $uniqueName The unique_name
* @param string $attributes The attributes
* @param string $type The type
*/
public function __construct(string $friendlyName = Values::NONE, string $uniqueName = Values::NONE, string $attributes = Values::NONE, string $type = Values::NONE) {
$this->options['friendlyName'] = $friendlyName;
$this->options['uniqueName'] = $uniqueName;
$this->options['attributes'] = $attributes;
$this->options['type'] = $type;
}
/**
* The friendly_name
*
* @param string $friendlyName The friendly_name
* @return $this Fluent Builder
*/
public function setFriendlyName(string $friendlyName): self {
$this->options['friendlyName'] = $friendlyName;
return $this;
}
/**
* The unique_name
*
* @param string $uniqueName The unique_name
* @return $this Fluent Builder
*/
public function setUniqueName(string $uniqueName): self {
$this->options['uniqueName'] = $uniqueName;
return $this;
}
/**
* The attributes
*
* @param string $attributes The attributes
* @return $this Fluent Builder
*/
public function setAttributes(string $attributes): self {
$this->options['attributes'] = $attributes;
return $this;
}
/**
* The type
*
* @param string $type The type
* @return $this Fluent Builder
*/
public function setType(string $type): self {
$this->options['type'] = $type;
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.IpMessaging.V1.CreateChannelOptions ' . $options . ']';
}
}
class ReadChannelOptions extends Options {
/**
* @param string[] $type The type
*/
public function __construct(array $type = Values::ARRAY_NONE) {
$this->options['type'] = $type;
}
/**
* The type
*
* @param string[] $type The type
* @return $this Fluent Builder
*/
public function setType(array $type): self {
$this->options['type'] = $type;
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.IpMessaging.V1.ReadChannelOptions ' . $options . ']';
}
}
class UpdateChannelOptions extends Options {
/**
* @param string $friendlyName The friendly_name
* @param string $uniqueName The unique_name
* @param string $attributes The attributes
*/
public function __construct(string $friendlyName = Values::NONE, string $uniqueName = Values::NONE, string $attributes = Values::NONE) {
$this->options['friendlyName'] = $friendlyName;
$this->options['uniqueName'] = $uniqueName;
$this->options['attributes'] = $attributes;
}
/**
* The friendly_name
*
* @param string $friendlyName The friendly_name
* @return $this Fluent Builder
*/
public function setFriendlyName(string $friendlyName): self {
$this->options['friendlyName'] = $friendlyName;
return $this;
}
/**
* The unique_name
*
* @param string $uniqueName The unique_name
* @return $this Fluent Builder
*/
public function setUniqueName(string $uniqueName): self {
$this->options['uniqueName'] = $uniqueName;
return $this;
}
/**
* The attributes
*
* @param string $attributes The attributes
* @return $this Fluent Builder
*/
public function setAttributes(string $attributes): self {
$this->options['attributes'] = $attributes;
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.IpMessaging.V1.UpdateChannelOptions ' . $options . ']';
}
}