namespace ElectronNET.API.Entities
{
using System.Text.Json.Serialization;
///
/// The cause of the cookie change (per Electron Cookies 'changed' event).
///
public enum CookieChangedCause
{
///
/// The cookie was changed directly by a consumer's action.
///
@explicit,
///
/// The cookie was automatically removed due to an insert operation that overwrote it.
///
overwrite,
///
/// The cookie was automatically removed as it expired.
///
expired,
///
/// The cookie was automatically evicted during garbage collection.
///
evicted,
///
/// The cookie was overwritten with an already-expired expiration date.
///
[JsonPropertyName("expired_overwrite")]
expiredOverwrite
}
}