aboutsummaryrefslogtreecommitdiffstats
path: root/gsxws/escalations.py
diff options
context:
space:
mode:
Diffstat (limited to 'gsxws/escalations.py')
-rw-r--r--gsxws/escalations.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/gsxws/escalations.py b/gsxws/escalations.py
index a60e2f4..1ad2706 100644
--- a/gsxws/escalations.py
+++ b/gsxws/escalations.py
@@ -88,3 +88,10 @@ class Escalation(GsxObject):
def get_notes(self):
return self.objects.escalationNotes.iterchildren()
+
+class Context(GsxObject):
+ def __init__(self, ctype, cid):
+ super(Context, self).__init__()
+ self.contextType = ctype
+ self.contextID = cid
+