solution = array('serviceSid' => $serviceSid, 'intentSid' => $intentSid, 'sid' => $sid, ); $this->uri = '/Services/' . rawurlencode($serviceSid) . '/Intents/' . rawurlencode($intentSid) . '/Fields/' . rawurlencode($sid) . ''; } /** * Fetch a FieldInstance * * @return FieldInstance Fetched FieldInstance */ public function fetch() { $params = Values::of(array()); $payload = $this->version->fetch( 'GET', $this->uri, $params ); return new FieldInstance( $this->version, $payload, $this->solution['serviceSid'], $this->solution['intentSid'], $this->solution['sid'] ); } /** * Deletes the FieldInstance * * @return boolean True if delete succeeds, false otherwise */ 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.Preview.Understand.FieldContext ' . implode(' ', $context) . ']'; } }