Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.26 KB

GetDocumentSync.md

File metadata and controls

34 lines (25 loc) · 1.26 KB

GetDocumentSync

Properties

Name Type Description Notes
service DocumentSyncService [optional]
status DocumentSyncStatus [optional]
type DocumentSyncType [optional]
sync_date str Timestamp of synchronization [optional]
user_id str User who added document [optional]
message str Document sync message [optional]

Example

from formkiq_client.models.get_document_sync import GetDocumentSync

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

# convert the object into a dict
get_document_sync_dict = get_document_sync_instance.to_dict()
# create an instance of GetDocumentSync from a dict
get_document_sync_from_dict = GetDocumentSync.from_dict(get_document_sync_dict)

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