Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.03 KB

File metadata and controls

30 lines (21 loc) · 1.03 KB

OutputSyncing

Properties

Name Type Description Notes
var_schema str A URL to the JSON Schema for this object. [optional] [readonly]
sync_status SyncStatus Returns null when the node is fully synchronized, otherwise returns the sync status

Example

from qan.qan.output_syncing import OutputSyncing

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

# convert the object into a dict
output_syncing_dict = output_syncing_instance.to_dict()
# create an instance of OutputSyncing from a dict
output_syncing_from_dict = OutputSyncing.from_dict(output_syncing_dict)

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