Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.17 KB

EzsignimportfolderResponse.md

File metadata and controls

31 lines (22 loc) · 1.17 KB

EzsignimportfolderResponse

A Ezsignimportfolder Object

Properties

Name Type Description Notes
pki_ezsignimportfolder_id int The unique ID of the Ezsignimportfolder
s_ezsignimportfolder_name str The name of the Ezsignimportfolder

Example

from eZmaxApi.models.ezsignimportfolder_response import EzsignimportfolderResponse

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

# convert the object into a dict
ezsignimportfolder_response_dict = ezsignimportfolder_response_instance.to_dict()
# create an instance of EzsignimportfolderResponse from a dict
ezsignimportfolder_response_from_dict = EzsignimportfolderResponse.from_dict(ezsignimportfolder_response_dict)

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