Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.19 KB

SignatureResponse.md

File metadata and controls

33 lines (24 loc) · 1.19 KB

SignatureResponse

A Signature Object

Properties

Name Type Description Notes
pki_signature_id int The unique ID of the Signature
fki_font_id int The unique ID of the Font [optional]
s_signature_url str The URL of the SVG file for the Signature [optional]
s_signature_urlinitials str The URL of the SVG file for the Initials [optional]

Example

from eZmaxApi.models.signature_response import SignatureResponse

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

# convert the object into a dict
signature_response_dict = signature_response_instance.to_dict()
# create an instance of SignatureResponse from a dict
signature_response_from_dict = SignatureResponse.from_dict(signature_response_dict)

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