Skip to content

Commit 231d4a2

Browse files
committed
adds RetireRequest class
1 parent 23cf139 commit 231d4a2

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

vcert/common.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -592,6 +592,15 @@ def __init__(self, req_id=None, thumbprint=None, reason=RevocationReasons.NoRea
592592
self.comments = comments
593593
self.disable = disable
594594

595+
class RetireRequest:
596+
def __init__(self, req_id=None, thumbprint=None, guid=None):
597+
"""
598+
:param req_id:
599+
:param thumbprint:
600+
"""
601+
self.id = req_id
602+
self.thumbprint = thumbprint
603+
self.guid = guid
595604

596605
class Authentication:
597606
def __init__(self, user=None, password=None, access_token=None, refresh_token=None, api_key=None, state=None,

0 commit comments

Comments
 (0)