Type alias RestObjectOperationMapSet

RestObjectOperationMapSet: AnyTargetRestObjectOperationBase & {
    mapSet: {
        key: string;
        value: PublishObjectData;
    };
}

Operation to set a key to a specified value in an existing map object. Can target the map by either object ID or path.

Type declaration

  • mapSet: {
        key: string;
        value: PublishObjectData;
    }

    The map set parameters.

    • key: string

      The key to set.

    • value: PublishObjectData

      The value to assign to the key.

Generated using TypeDoc