ProjectDataUnlinkingBatchItemProcessing
Properties
Name |
Type |
Description |
Notes |
status |
str |
Possible values are: INITIALISED, WAITING_RESOURCES, RUNNING, UNLINKED, ALREADY_UNLINKED, FAILED, PARTIALLY_UNLINKED. More types could be added in a future release. |
|
additional_status_information |
str |
Additional information regarding the status of this batch item. |
[optional] |
Example
from libica.openapi.v3.models.project_data_unlinking_batch_item_processing import ProjectDataUnlinkingBatchItemProcessing
# TODO update the JSON string below
json = "{}"
# create an instance of ProjectDataUnlinkingBatchItemProcessing from a JSON string
project_data_unlinking_batch_item_processing_instance = ProjectDataUnlinkingBatchItemProcessing.from_json(json)
# print the JSON string representation of the object
print(ProjectDataUnlinkingBatchItemProcessing.to_json())
# convert the object into a dict
project_data_unlinking_batch_item_processing_dict = project_data_unlinking_batch_item_processing_instance.to_dict()
# create an instance of ProjectDataUnlinkingBatchItemProcessing from a dict
project_data_unlinking_batch_item_processing_from_dict = ProjectDataUnlinkingBatchItemProcessing.from_dict(project_data_unlinking_batch_item_processing_dict)
[Back to Model list] [Back to API list] [Back to README]