1 : <?php
2 :
3 : class Services_Twilio_Rest_Account
4 : extends Services_Twilio_InstanceResource
5 : {
6 : protected function init()
7 : {
8 27 : $this->setupSubresources(
9 27 : 'applications',
10 27 : 'available_phone_numbers',
11 27 : 'outgoing_caller_ids',
12 27 : 'calls',
13 27 : 'conferences',
14 27 : 'incoming_phone_numbers',
15 27 : 'notifications',
16 27 : 'outgoing_callerids',
17 27 : 'recordings',
18 27 : 'sms_messages',
19 27 : 'transcriptions',
20 27 : 'connect_apps',
21 : 'authorized_connect_apps'
22 27 : );
23 :
24 27 : $this->sandbox = new Services_Twilio_Rest_Sandbox(
25 27 : new Services_Twilio_CachingDataProxy('Sandbox', $this)
26 27 : );
27 27 : }
28 : }
|