Networking (pdk.net)
Contains structures for implementing networking services
Last updated
Contains structures for implementing networking services
Last updated
structure represents an immutable JSON object value (an unordered collection of zero or more name/value pairs). It also provides unmodifiable map view to the JSON object name/value mappings.
JsonObject is a superstructure for JsonArray.
Superstructures: <-
structure represents an immutable JSON array (an ordered sequence of zero or more values). It also provides an unmodifiable list view of the values in the array.
Superstructures: <- <-
structure that contains information about change operation. You can find more information and examples of use in the function description page.
Properties:
from ::
It contains the initial value's position within the JSON in copy and move operations, while being NULL for all other operations.
op ::
Operation name. Can be: add, remove, replace, move, copy, test
path ::
JSON-Pointer value that references a location within the target document where the operation is performed.
value ::
The JSON object that underwent an operation.
Superstructures: <-