diff options
Diffstat (limited to 'gsxws/escalations.py')
-rw-r--r-- | gsxws/escalations.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gsxws/escalations.py b/gsxws/escalations.py index 1ad2706..70f7732 100644 --- a/gsxws/escalations.py +++ b/gsxws/escalations.py @@ -86,6 +86,10 @@ class Escalation(GsxObject): return Lookup(escalationId=self.escalationId).lookup("GeneralEscalationDetailsLookup") def get_notes(self): + """ + Returns all the notes of this escalation. + Should probably be run after a lookup() + """ return self.objects.escalationNotes.iterchildren() |