芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/joolsmen.com/vendor/twilio/sdk/src/Twilio/Rest/Fax/V1/Fax/FaxMediaContext.php
solution = array('faxSid' => $faxSid, 'sid' => $sid, ); $this->uri = '/Faxes/' . \rawurlencode($faxSid) . '/Media/' . \rawurlencode($sid) . ''; } /** * Fetch a FaxMediaInstance * * @return FaxMediaInstance Fetched FaxMediaInstance * @throws TwilioException When an HTTP error occurs. */ public function fetch() { $params = Values::of(array()); $payload = $this->version->fetch( 'GET', $this->uri, $params ); return new FaxMediaInstance( $this->version, $payload, $this->solution['faxSid'], $this->solution['sid'] ); } /** * Deletes the FaxMediaInstance * * @return boolean True if delete succeeds, false otherwise * @throws TwilioException When an HTTP error occurs. */ public function delete() { return $this->version->delete('delete', $this->uri); } /** * Provide a friendly representation * * @return string Machine friendly representation */ public function __toString() { $context = array(); foreach ($this->solution as $key => $value) { $context[] = "$key=$value"; } return '[Twilio.Fax.V1.FaxMediaContext ' . \implode(' ', $context) . ']'; } }