/home/techb158/dev.balacoffee.com/vendor/twilio/sdk/src/Twilio/Rest/Voice/V1
Edit: /home/techb158/dev.balacoffee.com/vendor/twilio/sdk/src/Twilio/Rest/Voice/V1/IpRecordContext.php (2386B)
solution = ['sid' => $sid, ];
$this->uri = '/IpRecords/' . \rawurlencode($sid) . '';
}
/**
* Fetch the IpRecordInstance
*
* @return IpRecordInstance Fetched IpRecordInstance
* @throws TwilioException When an HTTP error occurs.
*/
public function fetch(): IpRecordInstance {
$payload = $this->version->fetch('GET', $this->uri);
return new IpRecordInstance($this->version, $payload, $this->solution['sid']);
}
/**
* Update the IpRecordInstance
*
* @param array|Options $options Optional Arguments
* @return IpRecordInstance Updated IpRecordInstance
* @throws TwilioException When an HTTP error occurs.
*/
public function update(array $options = []): IpRecordInstance {
$options = new Values($options);
$data = Values::of(['FriendlyName' => $options['friendlyName'], ]);
$payload = $this->version->update('POST', $this->uri, [], $data);
return new IpRecordInstance($this->version, $payload, $this->solution['sid']);
}
/**
* Delete the IpRecordInstance
*
* @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.Voice.V1.IpRecordContext ' . \implode(' ', $context) . ']';
}
}