Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.01 KB

ImportStatus.md

File metadata and controls

31 lines (22 loc) · 1.01 KB

ImportStatus

Properties

Name Type Description Notes
request ImportRequest [optional]
status RequestStatusCode [optional]
links List[Link] [optional] [readonly]

Example

from openapi_client.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_from_dict = ImportStatus.from_dict(import_status_dict)

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