| 1546 | } |
| 1547 | |
| 1548 | StatusObject toJSON() const { |
| 1549 | StatusObject result; |
| 1550 | result["created_time_timestamp"] = createdTime; |
| 1551 | result["created_time_datetime"] = epochsToGMTString(createdTime); |
| 1552 | result["storage_engine"] = storeType.toString(); |
| 1553 | return result; |
| 1554 | } |
| 1555 | }; |
| 1556 | |
| 1557 | // store metadata of wiggle action |
nothing calls this directly
no test coverage detected