Skip to content

Commit c81cad9

Browse files
committed
Merge pull request #7 from messagebird/add_details_to_hlr
Add missing details attribute to HLR
2 parents 4805fb4 + 060b200 commit c81cad9

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

examples/lookup_hlr.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
print(' network : %d' % lookup_hlr.network)
3636
print(' reference : %s' % lookup_hlr.reference)
3737
print(' status : %s' % lookup_hlr.status)
38+
print(' details : %s' % lookup_hlr.details)
3839
print(' createdDatetime : %s' % lookup_hlr.createdDatetime)
3940
print(' statusDatetime : %s\n' % lookup_hlr.statusDatetime)
4041

examples/lookup_hlr_create.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
print(' msisdn : %d' % lookup_hlr.msisdn)
3535
print(' reference : %s' % lookup_hlr.reference)
3636
print(' status : %s' % lookup_hlr.status)
37+
print(' details : %s' % lookup_hlr.details)
3738
print(' createdDatetime : %s' % lookup_hlr.createdDatetime)
3839
print(' statusDatetime : %s\n' % lookup_hlr.statusDatetime)
3940

messagebird/hlr.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ def __init__(self):
88
self.network = None
99
self.reference = None
1010
self.status = None
11+
self.details = None
1112
self._createdDatetime = None
1213
self._statusDatetime = None
1314

0 commit comments

Comments
 (0)