diff options
author | Filipp Lepalaan <f@230.to> | 2013-10-11 14:39:25 +0300 |
---|---|---|
committer | Filipp Lepalaan <f@230.to> | 2013-10-11 14:39:25 +0300 |
commit | 3c0c921d8134d4e83676f2f817b2a805df1e5906 (patch) | |
tree | 119ff6bcfcb034d7c3f8cdf33cd010a741b4b6ad /gsxws/repairs.py | |
parent | 8d1c76e9a29a2bdf4a28afbd3945410a8c32bc6c (diff) | |
download | py-gsxws-3c0c921d8134d4e83676f2f817b2a805df1e5906.tar.gz py-gsxws-3c0c921d8134d4e83676f2f817b2a805df1e5906.tar.bz2 py-gsxws-3c0c921d8134d4e83676f2f817b2a805df1e5906.zip |
Added ComponentCheck class
Diffstat (limited to 'gsxws/repairs.py')
-rw-r--r-- | gsxws/repairs.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gsxws/repairs.py b/gsxws/repairs.py index 0f45f81..2606ce2 100644 --- a/gsxws/repairs.py +++ b/gsxws/repairs.py @@ -48,6 +48,11 @@ class RepairOrderLine(GsxObject): comptiaModifier = "" +class ComponentCheck(GsxObject): + component = "" + serialNumber = "" + + class ServicePart(GsxObject): "A generic service part (for PartInfo and whatnot)" def __init__(self, number, *args, **kwargs): |