BundleDataLinkingBatchItemProcessing
Properties
Name |
Type |
Description |
Notes |
status |
str |
Possible values are: INITIALISED, WAITING_RESOURCES, RUNNING, LINKED, ALREADY_LINKED, FAILED, PARTIALLY_LINKED. 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.bundle_data_linking_batch_item_processing import BundleDataLinkingBatchItemProcessing
# TODO update the JSON string below
json = "{}"
# create an instance of BundleDataLinkingBatchItemProcessing from a JSON string
bundle_data_linking_batch_item_processing_instance = BundleDataLinkingBatchItemProcessing.from_json(json)
# print the JSON string representation of the object
print(BundleDataLinkingBatchItemProcessing.to_json())
# convert the object into a dict
bundle_data_linking_batch_item_processing_dict = bundle_data_linking_batch_item_processing_instance.to_dict()
# create an instance of BundleDataLinkingBatchItemProcessing from a dict
bundle_data_linking_batch_item_processing_from_dict = BundleDataLinkingBatchItemProcessing.from_dict(bundle_data_linking_batch_item_processing_dict)
[Back to Model list] [Back to API list] [Back to README]