| 395 | } |
| 396 | |
| 397 | Dictionary EditListCache::to_json() const { |
| 398 | return { |
| 399 | { "retrieved_time", retrieved_time }, |
| 400 | { "asset_id", asset_id }, |
| 401 | { "edit_list", gdre::vector_to_array(edit_list) } |
| 402 | }; |
| 403 | } |
| 404 | |
| 405 | EditCache EditCache::from_json(const Dictionary &json) { |
| 406 | EditCache cache; |
no test coverage detected