Skip to main content

SetSettingsStoreValueResult

SetSettingsStoreValueResult

Result type for settings store set operations, providing detailed feedback about the success or failure of each operation.

Signature
interface SetSettingsStoreValueResult {
key: string;
result: boolean;
error?: string;
}

key

property
string

The key that was attempted to be set.

result

property
boolean

Whether the set operation was successful.

error

property
string

Error message if the operation failed, null if successful.