{-# LANGUAGE DeriveGeneric #-}
module Telegram.Bot.API.Types.MaskPosition where

import Data.Aeson (FromJSON (..), ToJSON (..))
import Data.Text (Text)
import GHC.Generics (Generic)

import Telegram.Bot.API.Internal.Utils

-- ** 'MaskPosition'

-- | This object describes the position on faces where a mask should be placed by default.
data MaskPosition = MaskPosition
  { MaskPosition -> Text
maskPositionPoint  :: Text  -- ^ The part of the face relative to which the mask should be placed. One of “forehead”, “eyes”, “mouth”, or “chin”.
  , MaskPosition -> Float
maskPositionXShift :: Float -- ^ Shift by X-axis measured in widths of the mask scaled to the face size, from left to right. For example, choosing -1.0 will place mask just to the left of the default mask position.
  , MaskPosition -> Float
maskPositionYShift :: Float -- ^ Shift by Y-axis measured in heights of the mask scaled to the face size, from top to bottom. For example, 1.0 will place the mask just below the default mask position.
  , MaskPosition -> Float
maskPositionScale  :: Float -- ^ Mask scaling coefficient. For example, 2.0 means double size.
  }
  deriving ((forall x. MaskPosition -> Rep MaskPosition x)
-> (forall x. Rep MaskPosition x -> MaskPosition)
-> Generic MaskPosition
forall x. Rep MaskPosition x -> MaskPosition
forall x. MaskPosition -> Rep MaskPosition x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cfrom :: forall x. MaskPosition -> Rep MaskPosition x
from :: forall x. MaskPosition -> Rep MaskPosition x
$cto :: forall x. Rep MaskPosition x -> MaskPosition
to :: forall x. Rep MaskPosition x -> MaskPosition
Generic, Int -> MaskPosition -> ShowS
[MaskPosition] -> ShowS
MaskPosition -> String
(Int -> MaskPosition -> ShowS)
-> (MaskPosition -> String)
-> ([MaskPosition] -> ShowS)
-> Show MaskPosition
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> MaskPosition -> ShowS
showsPrec :: Int -> MaskPosition -> ShowS
$cshow :: MaskPosition -> String
show :: MaskPosition -> String
$cshowList :: [MaskPosition] -> ShowS
showList :: [MaskPosition] -> ShowS
Show)

instance ToJSON   MaskPosition where toJSON :: MaskPosition -> Value
toJSON = MaskPosition -> Value
forall a (d :: Meta) (f :: * -> *).
(Generic a, GToJSON Zero (Rep a), Rep a ~ D1 d f, Datatype d) =>
a -> Value
gtoJSON
instance FromJSON MaskPosition where parseJSON :: Value -> Parser MaskPosition
parseJSON = Value -> Parser MaskPosition
forall a (d :: Meta) (f :: * -> *).
(Generic a, GFromJSON Zero (Rep a), Rep a ~ D1 d f, Datatype d) =>
Value -> Parser a
gparseJSON