Type Alias ApiKeyPatch

A JSON Patch document as defined in https://datatracker.ietf.org/doc/html/rfc6902.

type ApiKeyPatch = {
    op: "replace";
    path: "/description";
    value: string;
}
Index

Properties

Properties

op: "replace"

The operation to be performed.

path: "/description"

The path for the given resource field to patch.

value: string

The value to be used for this operation.