Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.24 KB

File metadata and controls

34 lines (25 loc) · 1.24 KB

SignatureRequest

A Signature Object

Properties

Name Type Description Notes
pki_signature_id int The unique ID of the Signature [optional]
fki_font_id int The unique ID of the Font
e_signature_preference FieldESignaturePreference
t_signature_svg str The svg of the Signature [optional]
t_signature_svginitials str The svg of the Initials [optional]

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_from_dict = SignatureRequest.from_dict(signature_request_dict)

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