Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.64 KB

EzsigndiscussionResponseCompound.md

File metadata and controls

36 lines (27 loc) · 1.64 KB

EzsigndiscussionResponseCompound

A Ezsigndiscussion Object

Properties

Name Type Description Notes
pki_ezsigndiscussion_id int The unique ID of the Ezsigndiscussion
fki_ezsignpage_id int The unique ID of the Ezsignpage
fki_discussion_id int The unique ID of the Discussion
i_ezsigndiscussion_x int The x of the Ezsigndiscussion
i_ezsigndiscussion_y int The y of the Ezsigndiscussion
i_ezsigndiscussion_pagenumber int The page number in the Ezsigndocument for the Ezsigndiscussion
obj_discussion DiscussionResponseCompound

Example

from eZmaxApi.models.ezsigndiscussion_response_compound import EzsigndiscussionResponseCompound

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

# convert the object into a dict
ezsigndiscussion_response_compound_dict = ezsigndiscussion_response_compound_instance.to_dict()
# create an instance of EzsigndiscussionResponseCompound from a dict
ezsigndiscussion_response_compound_from_dict = EzsigndiscussionResponseCompound.from_dict(ezsigndiscussion_response_compound_dict)

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