using System.Text.Json.Serialization;
namespace ElectronNET.API.Entities
{
///
/// The cause of the change
///
public enum CookieChangedCause
{
///
///The cookie was changed directly by a consumer's action.
///
[JsonPropertyName("explicit")]
@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
}
}