<?php
/**
* This code was generated by
* \ / _ _ _| _ _
* | (_)\/(_)(_|\/| |(/_ v1.0.0
* / /
*/
namespace Twilio\Rest\Supersim\V1;
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 EsimProfileOptions {
/**
* @param string $callbackUrl The URL we should call after we have sent when
* the status of the eSIM Profile changes
* @param string $callbackMethod The HTTP method we should use to call
* callback_url
* @param string $eid Identifier of the eUICC that will claim the eSIM Profile
* @return CreateEsimProfileOptions Options builder
*/
public static function create(string $callbackUrl = Values::NONE, string $callbackMethod = Values::NONE, string $eid = Values::NONE): CreateEsimProfileOptions {
return new CreateEsimProfileOptions($callbackUrl, $callbackMethod, $eid);
}
/**
* @param string $eid List the eSIM Profiles that have been associated with an
* EId
* @param string $simSid Find the eSIM Profile resource related to a Sim
* resource by providing the SIM SID
* @param string $status List the eSIM Profiles that are in a given status
* @return ReadEsimProfileOptions Options builder
*/
public static function read(string $eid = Values::NONE, string $simSid = Values::NONE, string $status = Values::NONE): ReadEsimProfileOptions {
return new ReadEsimProfileOptions($eid, $simSid, $status);
}
}
class CreateEsimProfileOptions extends Options {
/**
* @param string $callbackUrl The URL we should call after we have sent when
* the status of the eSIM Profile changes
* @param string $callbackMethod The HTTP method we should use to call
* callback_url
* @param string $eid Identifier of the eUICC that will claim the eSIM Profile
*/
public function __construct(string $callbackUrl = Values::NONE, string $callbackMethod = Values::NONE, string $eid = Values::NONE) {
$this->options['callbackUrl'] = $callbackUrl;
$this->options['callbackMethod'] = $callbackMethod;
$this->options['eid'] = $eid;
}
/**
* The URL we should call using the `callback_method` when the status of the eSIM Profile changes. At this stage of the eSIM Profile pilot, the a request to the URL will only be called when the ESimProfile resource changes from `reserving` to `available`.
*
* @param string $callbackUrl The URL we should call after we have sent when
* the status of the eSIM Profile changes
* @return $this Fluent Builder
*/
public function setCallbackUrl(string $callbackUrl): self {
$this->options['callbackUrl'] = $callbackUrl;
return $this;
}
/**
* The HTTP method we should use to call `callback_url`. Can be: `GET` or `POST` and the default is POST.
*
* @param string $callbackMethod The HTTP method we should use to call
* callback_url
* @return $this Fluent Builder
*/
public function setCallbackMethod(string $callbackMethod): self {
$this->options['callbackMethod'] = $callbackMethod;
return $this;
}
/**
* Identifier of the eUICC that will claim the eSIM Profile.
*
* @param string $eid Identifier of the eUICC that will claim the eSIM Profile
* @return $this Fluent Builder
*/
public function setEid(string $eid): self {
$this->options['eid'] = $eid;
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.Supersim.V1.CreateEsimProfileOptions ' . $options . ']';
}
}
class ReadEsimProfileOptions extends Options {
/**
* @param string $eid List the eSIM Profiles that have been associated with an
* EId
* @param string $simSid Find the eSIM Profile resource related to a Sim
* resource by providing the SIM SID
* @param string $status List the eSIM Profiles that are in a given status
*/
public function __construct(string $eid = Values::NONE, string $simSid = Values::NONE, string $status = Values::NONE) {
$this->options['eid'] = $eid;
$this->options['simSid'] = $simSid;
$this->options['status'] = $status;
}
/**
* List the eSIM Profiles that have been associated with an EId.
*
* @param string $eid List the eSIM Profiles that have been associated with an
* EId
* @return $this Fluent Builder
*/
public function setEid(string $eid): self {
$this->options['eid'] = $eid;
return $this;
}
/**
* Find the eSIM Profile resource related to a [Sim](https://www.twilio.com/docs/wireless/api/sim-resource) resource by providing the SIM SID. Will always return an array with either 1 or 0 records.
*
* @param string $simSid Find the eSIM Profile resource related to a Sim
* resource by providing the SIM SID
* @return $this Fluent Builder
*/
public function setSimSid(string $simSid): self {
$this->options['simSid'] = $simSid;
return $this;
}
/**
* List the eSIM Profiles that are in a given status.
*
* @param string $status List the eSIM Profiles that are in a given status
* @return $this Fluent Builder
*/
public function setStatus(string $status): self {
$this->options['status'] = $status;
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.Supersim.V1.ReadEsimProfileOptions ' . $options . ']';
}
} |