Safe Haskell | Safe-Inferred |
---|---|
Language | GHC2021 |
Synopsis
- data SessionType
- = SessionTypeAndroid
- | SessionTypeApple
- | SessionTypeBrave
- | SessionTypeChrome
- | SessionTypeEdge
- | SessionTypeFirefox
- | SessionTypeIpad
- | SessionTypeIphone
- | SessionTypeLinux
- | SessionTypeMac
- | SessionTypeOpera
- | SessionTypeSafari
- | SessionTypeUbuntu
- | SessionTypeUnknown
- | SessionTypeVivaldi
- | SessionTypeWindows
- | SessionTypeXbox
Documentation
data SessionType Source #
Represents the type of session
SessionTypeAndroid | The session is running on an Android device |
SessionTypeApple | The session is running on a generic Apple device |
SessionTypeBrave | The session is running on the Brave browser |
SessionTypeChrome | The session is running on the Chrome browser |
SessionTypeEdge | The session is running on the Edge browser |
SessionTypeFirefox | The session is running on the Firefox browser |
SessionTypeIpad | The session is running on an iPad device |
SessionTypeIphone | The session is running on an iPhone device |
SessionTypeLinux | The session is running on a Linux device |
SessionTypeMac | The session is running on a Mac device |
SessionTypeOpera | The session is running on the Opera browser |
SessionTypeSafari | The session is running on the Safari browser |
SessionTypeUbuntu | The session is running on an Ubuntu device |
SessionTypeUnknown | The session is running on an unknown type of device |
SessionTypeVivaldi | The session is running on the Vivaldi browser |
SessionTypeWindows | The session is running on a Windows device |
SessionTypeXbox | The session is running on an Xbox console |
Instances
FromJSON SessionType Source # | |
Defined in TD.Data.SessionType parseJSON :: Value -> Parser SessionType # parseJSONList :: Value -> Parser [SessionType] # | |
Show SessionType Source # | |
Defined in TD.Data.SessionType showsPrec :: Int -> SessionType -> ShowS # show :: SessionType -> String # showList :: [SessionType] -> ShowS # | |
Eq SessionType Source # | |
Defined in TD.Data.SessionType (==) :: SessionType -> SessionType -> Bool # (/=) :: SessionType -> SessionType -> Bool # | |
ShortShow SessionType Source # | |
Defined in TD.Data.SessionType shortShow :: SessionType -> String Source # |