AddObjectNull decodes the JSON value within an object or an array to a UnmarshalerJSONObject.
(v interface{})
| 364 | |
| 365 | // AddObjectNull decodes the JSON value within an object or an array to a UnmarshalerJSONObject. |
| 366 | func (dec *Decoder) AddObjectNull(v interface{}) error { |
| 367 | return dec.ObjectNull(v) |
| 368 | } |
| 369 | |
| 370 | // Object decodes the JSON value within an object or an array to a UnmarshalerJSONObject. |
| 371 | func (dec *Decoder) Object(value UnmarshalerJSONObject) error { |