{-# LANGUAGE DeriveGeneric #-}
module Telegram.Bot.API.Types.EncryptedPassportElement where
import Data.Aeson (FromJSON (..), ToJSON (..))
import Data.Text (Text)
import GHC.Generics (Generic)
import Telegram.Bot.API.Types.PassportFile
import Telegram.Bot.API.Internal.Utils
data EncryptedPassportElement = EncryptedPassportElement
{ EncryptedPassportElement -> PassportElementType
encryptedPassportElementType :: PassportElementType
, EncryptedPassportElement -> Maybe Text
encryptedPassportElementData :: Maybe Text
, EncryptedPassportElement -> Maybe Text
encryptedPassportElementPhoneNumber :: Maybe Text
, EncryptedPassportElement -> Maybe Text
encryptedPassportElementEmail :: Maybe Text
, EncryptedPassportElement -> Maybe [PassportFile]
encryptedPassportElementFiles :: Maybe [PassportFile]
, EncryptedPassportElement -> Maybe PassportFile
encryptedPassportElementFrontSide :: Maybe PassportFile
, EncryptedPassportElement -> Maybe PassportFile
encryptedPassportElementReverseSide :: Maybe PassportFile
, EncryptedPassportElement -> Maybe PassportFile
encryptedPassportElementSelfie :: Maybe PassportFile
, EncryptedPassportElement -> Maybe [PassportFile]
encryptedPassportElementTranslation :: Maybe [PassportFile]
, EncryptedPassportElement -> Text
encryptedPassportElementHash :: Text
} deriving (forall x.
Rep EncryptedPassportElement x -> EncryptedPassportElement
forall x.
EncryptedPassportElement -> Rep EncryptedPassportElement x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep EncryptedPassportElement x -> EncryptedPassportElement
$cfrom :: forall x.
EncryptedPassportElement -> Rep EncryptedPassportElement x
Generic, Int -> EncryptedPassportElement -> ShowS
[EncryptedPassportElement] -> ShowS
EncryptedPassportElement -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [EncryptedPassportElement] -> ShowS
$cshowList :: [EncryptedPassportElement] -> ShowS
show :: EncryptedPassportElement -> String
$cshow :: EncryptedPassportElement -> String
showsPrec :: Int -> EncryptedPassportElement -> ShowS
$cshowsPrec :: Int -> EncryptedPassportElement -> ShowS
Show)
instance ToJSON EncryptedPassportElement where toJSON :: EncryptedPassportElement -> Value
toJSON = forall a (d :: Meta) (f :: * -> *).
(Generic a, GToJSON Zero (Rep a), Rep a ~ D1 d f, Datatype d) =>
a -> Value
gtoJSON
instance FromJSON EncryptedPassportElement where parseJSON :: Value -> Parser EncryptedPassportElement
parseJSON = forall a (d :: Meta) (f :: * -> *).
(Generic a, GFromJSON Zero (Rep a), Rep a ~ D1 d f, Datatype d) =>
Value -> Parser a
gparseJSON
data PassportElementType
= PassportElementTypePersonalDetails
| PassportElementTypePassport
| PassportElementTypeDriverLicense
| PassportElementTypeIdentityCard
| PassportElementTypeInternalPassport
| PassportElementTypeAddress
| PassportElementTypeUtilityBill
| PassportElementTypeBankStatement
| PassportElementTypeRentalAgreement
| PassportElementTypePassportRegistration
| PassportElementTypeTemporaryRegistration
| PassportElementTypePhoneNumber
| PassportElementTypeEmail
deriving (forall x. Rep PassportElementType x -> PassportElementType
forall x. PassportElementType -> Rep PassportElementType x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep PassportElementType x -> PassportElementType
$cfrom :: forall x. PassportElementType -> Rep PassportElementType x
Generic, Int -> PassportElementType -> ShowS
[PassportElementType] -> ShowS
PassportElementType -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [PassportElementType] -> ShowS
$cshowList :: [PassportElementType] -> ShowS
show :: PassportElementType -> String
$cshow :: PassportElementType -> String
showsPrec :: Int -> PassportElementType -> ShowS
$cshowsPrec :: Int -> PassportElementType -> ShowS
Show)
instance ToJSON PassportElementType where toJSON :: PassportElementType -> Value
toJSON = forall a (d :: Meta) (f :: * -> *).
(Generic a, GToJSON Zero (Rep a), Rep a ~ D1 d f, Datatype d) =>
a -> Value
gtoJSON
instance FromJSON PassportElementType where parseJSON :: Value -> Parser PassportElementType
parseJSON = forall a (d :: Meta) (f :: * -> *).
(Generic a, GFromJSON Zero (Rep a), Rep a ~ D1 d f, Datatype d) =>
Value -> Parser a
gparseJSON