Class ScimPatchOperation
- Namespace
- Kuestenlogik.Bowire.Scim
- Assembly
- Kuestenlogik.Bowire.Scim.dll
One entry of a PATCH request (RFC 7644 §3.5.2).
public sealed class ScimPatchOperation
- Inheritance
-
ScimPatchOperation
- Inherited Members
Constructors
ScimPatchOperation()
public ScimPatchOperation()
Properties
Op
add, replace or remove. Case-insensitive on the wire.
[JsonPropertyName("op")]
public string Op { get; set; }
Property Value
Path
Which attribute. Absent means the value is an object applied at the root.
[JsonPropertyName("path")]
public string? Path { get; set; }
Property Value
Value
The new value.
[JsonPropertyName("value")]
public JsonElement? Value { get; set; }