Api Patch
class

Patch

public class Patch

Represents a complete set of changes to be applied to a JSON structure.

Remarks

A patch contains all the operations needed to transform one JSON structure into another while preserving object identity and relationships.

Constructors

Patch()

Properties

Name Type Description
AddedObjects List<AddedObject> Objects that need to be added to the target structure.
RemovedObjects List<RemovedObject> Objects that need to be removed from the target structure.
PropertyOverrides List<PropertyOverride> Property values that need to be changed on existing objects.
MovedObjects List<MovedObject> Objects that need to be moved to a different location in the structure.
Assembly: Sandbox.Engine Declaring Type: Json Full Name: Sandbox.Json.Patch