Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.39 KB

File metadata and controls

32 lines (24 loc) · 1.39 KB

ExternalDbSyncFormResultDto

The result of an external DB synchronization for a single form.

Properties

Name Type Description Notes
id int The form file ID. [optional]
title str The form file title. [optional]
success bool Specifies whether the synchronization succeeded for this form. [optional]
error str The error message if the synchronization failed for this form. [optional]

Example

from docspace_api_sdk.models.external_db_sync_form_result_dto import ExternalDbSyncFormResultDto

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

# convert the object into a dict
external_db_sync_form_result_dto_dict = external_db_sync_form_result_dto_instance.to_dict()
# create an instance of ExternalDbSyncFormResultDto from a dict
external_db_sync_form_result_dto_from_dict = ExternalDbSyncFormResultDto.from_dict(external_db_sync_form_result_dto_dict)

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