DataUpdateGroup¶
Updates to apply.
Properties¶
Name | Type | Description | Notes |
---|---|---|---|
data_ids | List[str] | ||
user_tags | TagUpdate | [optional] | |
technical_tags | TagUpdate | [optional] | |
will_be_archived_at | datetime | The timestamp when the data should be archived. | [optional] |
will_be_deleted_at | datetime | The timestamp when the data should be deleted. | [optional] |
Example¶
from libica.openapi.v3.models.data_update_group import DataUpdateGroup
# TODO update the JSON string below
json = "{}"
# create an instance of DataUpdateGroup from a JSON string
data_update_group_instance = DataUpdateGroup.from_json(json)
# print the JSON string representation of the object
print(DataUpdateGroup.to_json())
# convert the object into a dict
data_update_group_dict = data_update_group_instance.to_dict()
# create an instance of DataUpdateGroup from a dict
data_update_group_from_dict = DataUpdateGroup.from_dict(data_update_group_dict)