Skip to content

Commit df063df

Browse files
committed
minor updates to RetireRequest class
1 parent 231d4a2 commit df063df

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

vcert/common.py

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

595+
595596
class RetireRequest:
596-
def __init__(self, req_id=None, thumbprint=None, guid=None):
597+
def __init__(self, req_id=None, thumbprint=None, guid=None, description=None):
597598
"""
598599
:param req_id:
599600
:param thumbprint:
601+
:param guid:
602+
:param description:
600603
"""
601604
self.id = req_id
602605
self.thumbprint = thumbprint
603606
self.guid = guid
607+
self.description = description
608+
604609

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

0 commit comments

Comments
 (0)