Skip to content

Files

Latest commit

2e08581 · Jan 17, 2025

History

History
34 lines (25 loc) · 1.39 KB

SignatureResponseCompoundV3.md

File metadata and controls

34 lines (25 loc) · 1.39 KB

SignatureResponseCompoundV3

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
e_signature_preference FieldESignaturePreference
b_signature_svg bool Whether the signature has a SVG or not
b_signature_svginitials bool Whether the initials has a SVG or not

Example

from eZmaxApi.models.signature_response_compound_v3 import SignatureResponseCompoundV3

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

# convert the object into a dict
signature_response_compound_v3_dict = signature_response_compound_v3_instance.to_dict()
# create an instance of SignatureResponseCompoundV3 from a dict
signature_response_compound_v3_from_dict = SignatureResponseCompoundV3.from_dict(signature_response_compound_v3_dict)

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