(v any)
| 435 | } |
| 436 | |
| 437 | func marshalSystemTaskJSON(v any) (string, error) { |
| 438 | if v == nil { |
| 439 | return "", nil |
| 440 | } |
| 441 | data, err := common.Marshal(v) |
| 442 | if err != nil { |
| 443 | return "", err |
| 444 | } |
| 445 | return string(data), nil |
| 446 | } |
| 447 | |
| 448 | func decodeSystemTaskJSONString(data string, v any) error { |
| 449 | if data == "" { |
no test coverage detected