Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 2.04 KB

VersionhistoryResponse.md

File metadata and controls

40 lines (31 loc) · 2.04 KB

VersionhistoryResponse

A Versionhistory Object

Properties

Name Type Description Notes
pki_versionhistory_id int The unique ID of the Versionhistory
fki_module_id int The unique ID of the Module [optional]
fki_modulesection_id int The unique ID of the Modulesection [optional]
s_module_name_x str The Name of the Module in the language of the requester [optional]
s_modulesection_name_x str The Name of the Modulesection in the language of the requester [optional]
e_versionhistory_usertype FieldEVersionhistoryUsertype [optional]
obj_versionhistory_detail MultilingualVersionhistoryDetail
dt_versionhistory_date str The date at which the Versionhistory was published or should be published
dt_versionhistory_dateend str The date at which the Versionhistory will no longer be visible [optional]
e_versionhistory_type FieldEVersionhistoryType
b_versionhistory_draft bool Whether the Versionhistory is published or still a draft

Example

from eZmaxApi.models.versionhistory_response import VersionhistoryResponse

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

# convert the object into a dict
versionhistory_response_dict = versionhistory_response_instance.to_dict()
# create an instance of VersionhistoryResponse from a dict
versionhistory_response_form_dict = versionhistory_response.from_dict(versionhistory_response_dict)

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