Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.28 KB

File metadata and controls

35 lines (26 loc) · 1.28 KB

DocumentSync

Properties

Name Type Description Notes
service DocumentSyncService [optional]
status DocumentSyncStatus [optional]
type DocumentSyncType [optional]
inserted_date str Inserted Timestamp [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.document_sync import DocumentSync

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

# convert the object into a dict
document_sync_dict = document_sync_instance.to_dict()
# create an instance of DocumentSync from a dict
document_sync_from_dict = DocumentSync.from_dict(document_sync_dict)

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