Interface RestObjectOperationMapCreateBody

The map creation payload, specifying the semantics and initial entries for a new map object. Used as the body of RestObjectOperationMapCreate and as input to generateObjectId.

Hierarchy

  • RestObjectOperationMapCreateBody

Properties

Properties

mapCreate: {
    entries: Record<string, {
        data: PublishObjectData;
    }>;
    semantics: "lww";
}

The map creation parameters.

Type declaration

  • entries: Record<string, {
        data: PublishObjectData;
    }>

    Initial key-value pairs for the map.

  • semantics: "lww"

    The conflict-resolution semantics for the map.

Generated using TypeDoc