Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 919 Bytes

RevokeDocument.md

File metadata and controls

30 lines (21 loc) · 919 Bytes

RevokeDocument

Properties

Name Type Description Notes
message str
on_behalf_of str [optional]

Example

from boldsign.models.revoke_document import RevokeDocument

# TODO update the JSON string below
json = "{}"
# create an instance of RevokeDocument from a JSON string
revoke_document_instance = RevokeDocument.from_json(json)
# print the JSON string representation of the object
print(RevokeDocument.to_json())

# convert the object into a dict
revoke_document_dict = revoke_document_instance.to_dict()
# create an instance of RevokeDocument from a dict
revoke_document_from_dict = RevokeDocument.from_dict(revoke_document_dict)

[Back to Model list] [Back to API list] [Back to README]