1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<?php
class Services_Twilio_Rest_Feedback extends Services_Twilio_InstanceResource {
public function __construct($client, $uri, $params = array()) { $this->instance_name = "Services_Twilio_Rest_Feedback"; return parent::__construct($client, $uri, $params); }
/** * Create feedback for the parent call */ public function create(array $params = array()) { $params = $this->client->createData($this->uri, $params); return new $this->instance_name($this->client, $this->uri, $params); }
/** * Delete feedback for the parent call */ public function delete() { $this->client->deleteData($this->uri); }
/** * Fetch the feedback for the parent call */ public function get() { return new $this->instance_name( $this->client, $this->uri ); }
}
|