| 46 | } |
| 47 | |
| 48 | std::string FileTransferRecord::AsUpdateJson() { |
| 49 | nlohmann::json obj; |
| 50 | obj["the_file_id"] = the_file_id_; |
| 51 | obj["end"] = end_; |
| 52 | obj["success"] = success_; |
| 53 | return obj.dump(2); |
| 54 | } |
| 55 | } |
nothing calls this directly
no outgoing calls
no test coverage detected