Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.01 KB

SignatureRequest.md

File metadata and controls

31 lines (22 loc) · 1.01 KB

SignatureRequest

A Signature Object

Properties

Name Type Description Notes
pki_signature_id int The unique ID of the Signature [optional]
t_signature_svg str The svg of the Signature

Example

from eZmaxApi.models.signature_request import SignatureRequest

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

# convert the object into a dict
signature_request_dict = signature_request_instance.to_dict()
# create an instance of SignatureRequest from a dict
signature_request_form_dict = signature_request.from_dict(signature_request_dict)

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