8000 Add usage_records and usage_triggers to client · Stackdriver/twilio-python@f30d690 · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Feb 1, 2018. It is now read-only.

Commit f30d690

Browse files
committed
Add usage_records and usage_triggers to client
1 parent 3ccebf9 commit f30d690

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

twilio/rest/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
from twilio.rest.resources import PhoneNumbers
1818
from twilio.rest.resources import Conferences
1919
from twilio.rest.resources import Sandboxes
20+
from twilio.rest.resources import UsageTriggers
21+
from twilio.rest.resources import UsageRecords
2022
from urllib import urlencode
2123
from urlparse import urljoin
2224

@@ -129,6 +131,8 @@ def __init__(self, account=None, token=None, base="https://api.twilio.com",
129131
self.conferences = Conferences(account_uri, auth)
130132
self.queues = Queues(account_uri, auth)
131133
self.sandboxes = Sandboxes(account_uri, auth)
134+
self.usage_triggers = UsageTriggers(account_uri, auth)
135+
self.usage_records = UsageRecords(account_uri, auth)
132136

133137
self.auth = auth
134138
self.account_uri = account_uri

0 commit comments

Comments
 (0)
0