/home/techb158/dev.balacoffee.com/vendor/twilio/sdk/src/Twilio/Rest/Video/V1
Edit: /home/techb158/dev.balacoffee.com/vendor/twilio/sdk/src/Twilio/Rest/Video/V1/CompositionContext.php (1810B)
solution = ['sid' => $sid, ];
$this->uri = '/Compositions/' . \rawurlencode($sid) . '';
}
/**
* Fetch the CompositionInstance
*
* @return CompositionInstance Fetched CompositionInstance
* @throws TwilioException When an HTTP error occurs.
*/
public function fetch(): CompositionInstance {
$payload = $this->version->fetch('GET', $this->uri);
return new CompositionInstance($this->version, $payload, $this->solution['sid']);
}
/**
* Delete the CompositionInstance
*
* @return bool True if delete succeeds, false otherwise
* @throws TwilioException When an HTTP error occurs.
*/
public function delete(): bool {
return $this->version->delete('DELETE', $this->uri);
}
/**
* Provide a friendly representation
*
* @return string Machine friendly representation
*/
public function __toString(): string {
$context = [];
foreach ($this->solution as $key => $value) {
$context[] = "$key=$value";
}
return '[Twilio.Video.V1.CompositionContext ' . \implode(' ', $context) . ']';
}
}