Skip to content

ProjectDataUpdateBatchItemProcessing

Properties

Name Type Description Notes
status str
additional_status_information str Additional information regarding the status of this batch item. [optional]

Example

from libica.openapi.v3.models.project_data_update_batch_item_processing import ProjectDataUpdateBatchItemProcessing

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

# convert the object into a dict
project_data_update_batch_item_processing_dict = project_data_update_batch_item_processing_instance.to_dict()
# create an instance of ProjectDataUpdateBatchItemProcessing from a dict
project_data_update_batch_item_processing_from_dict = ProjectDataUpdateBatchItemProcessing.from_dict(project_data_update_batch_item_processing_dict)

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