json_object_set_value

Syntax

native bool:json_object_set_value(JSON:object, const name[], const JSON:value, bool:dot_not = false);

Usage

Parameter Description
object
Object handle
name
Key name
value
JSON handle to set
dot_not
True to use dot notation, false to not

Description

Sets a value in the object.

Note

  • If dot notation is used some values may be inaccessible
    because valid names in JSON can contain dots.
  • It also removes the old value if any.

Return

True if succeed, false otherwise

Error

If passed handle is not a valid object