A Ezsigntsarequirement AutocompleteElement Response
Name | Type | Description | Notes |
---|---|---|---|
s_ezsigntsarequirement_description_x | str | The description of the Ezsigntsarequirement in the language of the requester | |
pki_ezsigntsarequirement_id | int | The unique ID of the Ezsigntsarequirement. Determine if a Time Stamping Authority should add a timestamp on each of the signature. Valid values: | Value |
b_ezsigntsarequirement_isactive | bool | Whether the Ezsigntsarequirement is active or not | |
b_disabled | bool | Indicates if the element is disabled in the context |
from eZmaxApi.models.ezsigntsarequirement_autocomplete_element_response import EzsigntsarequirementAutocompleteElementResponse
# TODO update the JSON string below
json = "{}"
# create an instance of EzsigntsarequirementAutocompleteElementResponse from a JSON string
ezsigntsarequirement_autocomplete_element_response_instance = EzsigntsarequirementAutocompleteElementResponse.from_json(json)
# print the JSON string representation of the object
print(EzsigntsarequirementAutocompleteElementResponse.to_json())
# convert the object into a dict
ezsigntsarequirement_autocomplete_element_response_dict = ezsigntsarequirement_autocomplete_element_response_instance.to_dict()
# create an instance of EzsigntsarequirementAutocompleteElementResponse from a dict
ezsigntsarequirement_autocomplete_element_response_from_dict = EzsigntsarequirementAutocompleteElementResponse.from_dict(ezsigntsarequirement_autocomplete_element_response_dict)