Name | Type | Description | Notes |
---|---|---|---|
request | ImportRequest | [optional] | |
status | RequestStatusCode | [optional] | |
links | List[Link] | [optional] [readonly] |
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)