A Signature Object
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 |
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)