AttrValue is a JSON value that can be string, number, array, bool, or null.
| 4 | |
| 5 | // AttrValue is a JSON value that can be string, number, array, bool, or null. |
| 6 | type AttrValue struct { |
| 7 | raw json.RawMessage |
| 8 | } |
| 9 | |
| 10 | func (a *AttrValue) UnmarshalJSON(data []byte) error { |
| 11 | a.raw = data |
nothing calls this directly
no outgoing calls
no test coverage detected