(data string, v any)
| 446 | } |
| 447 | |
| 448 | func decodeSystemTaskJSONString(data string, v any) error { |
| 449 | if data == "" { |
| 450 | return nil |
| 451 | } |
| 452 | return common.UnmarshalJsonStr(data, v) |
| 453 | } |
| 454 | |
| 455 | func decodeSystemTaskJSONValue(data string) any { |
| 456 | if data == "" { |
no test coverage detected