Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 892 Bytes

ImportStatus.md

File metadata and controls

29 lines (21 loc) · 892 Bytes

ImportStatus

Properties

Name Type Description Notes
data ImportStatusData [optional]

Example

from listmonk.models.import_status import ImportStatus

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

# convert the object into a dict
import_status_dict = import_status_instance.to_dict()
# create an instance of ImportStatus from a dict
import_status_form_dict = import_status.from_dict(import_status_dict)

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