Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.13 KB

SignatureResponseCompound.md

File metadata and controls

31 lines (22 loc) · 1.13 KB

SignatureResponseCompound

A Signature Object

Properties

Name Type Description Notes
pki_signature_id int The unique ID of the Signature
s_signature_url str The URL of the SVG file for the Signature

Example

from eZmaxApi.models.signature_response_compound import SignatureResponseCompound

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

# convert the object into a dict
signature_response_compound_dict = signature_response_compound_instance.to_dict()
# create an instance of SignatureResponseCompound from a dict
signature_response_compound_form_dict = signature_response_compound.from_dict(signature_response_compound_dict)

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