{-# LANGUAGE MultiWayIf #-}
-- CHANGE WITH CAUTION: This is a generated code file generated by https://github.com/Haskell-OpenAPI-Code-Generator/Haskell-OpenAPI-Client-Code-Generator.
{-# LANGUAGE OverloadedStrings #-}

-- | Contains the types generated from the schema DeletedPrice
module StripeAPI.Types.DeletedPrice where

import qualified Control.Monad.Fail
import qualified Data.Aeson
import qualified Data.Aeson as Data.Aeson.Encoding.Internal
import qualified Data.Aeson as Data.Aeson.Types
import qualified Data.Aeson as Data.Aeson.Types.FromJSON
import qualified Data.Aeson as Data.Aeson.Types.Internal
import qualified Data.Aeson as Data.Aeson.Types.ToJSON
import qualified Data.ByteString.Char8
import qualified Data.ByteString.Char8 as Data.ByteString.Internal
import qualified Data.Functor
import qualified Data.Scientific
import qualified Data.Text
import qualified Data.Text.Internal
import qualified Data.Time.Calendar as Data.Time.Calendar.Days
import qualified Data.Time.LocalTime as Data.Time.LocalTime.Internal.ZonedTime
import qualified GHC.Base
import qualified GHC.Classes
import qualified GHC.Int
import qualified GHC.Show
import qualified GHC.Types
import qualified StripeAPI.Common
import StripeAPI.TypeAlias
import qualified Prelude as GHC.Integer.Type
import qualified Prelude as GHC.Maybe

-- | Defines the object schema located at @components.schemas.deleted_price@ in the specification.
data DeletedPrice = DeletedPrice
  { -- | id: Unique identifier for the object.
    --
    -- Constraints:
    --
    -- * Maximum length of 5000
    DeletedPrice -> Text
deletedPriceId :: Data.Text.Internal.Text
  }
  deriving
    ( Int -> DeletedPrice -> ShowS
[DeletedPrice] -> ShowS
DeletedPrice -> String
(Int -> DeletedPrice -> ShowS)
-> (DeletedPrice -> String)
-> ([DeletedPrice] -> ShowS)
-> Show DeletedPrice
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DeletedPrice] -> ShowS
$cshowList :: [DeletedPrice] -> ShowS
show :: DeletedPrice -> String
$cshow :: DeletedPrice -> String
showsPrec :: Int -> DeletedPrice -> ShowS
$cshowsPrec :: Int -> DeletedPrice -> ShowS
GHC.Show.Show,
      DeletedPrice -> DeletedPrice -> Bool
(DeletedPrice -> DeletedPrice -> Bool)
-> (DeletedPrice -> DeletedPrice -> Bool) -> Eq DeletedPrice
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DeletedPrice -> DeletedPrice -> Bool
$c/= :: DeletedPrice -> DeletedPrice -> Bool
== :: DeletedPrice -> DeletedPrice -> Bool
$c== :: DeletedPrice -> DeletedPrice -> Bool
GHC.Classes.Eq
    )

instance Data.Aeson.Types.ToJSON.ToJSON DeletedPrice where
  toJSON :: DeletedPrice -> Value
toJSON DeletedPrice
obj = [Pair] -> Value
Data.Aeson.Types.Internal.object (Text
"id" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Data.Aeson.Types.ToJSON..= DeletedPrice -> Text
deletedPriceId DeletedPrice
obj Pair -> [Pair] -> [Pair]
forall a. a -> [a] -> [a]
: Text
"deleted" Text -> Value -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Data.Aeson.Types.ToJSON..= Bool -> Value
Data.Aeson.Types.Internal.Bool Bool
GHC.Types.True Pair -> [Pair] -> [Pair]
forall a. a -> [a] -> [a]
: Text
"object" Text -> Value -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Data.Aeson.Types.ToJSON..= Text -> Value
Data.Aeson.Types.Internal.String Text
"price" Pair -> [Pair] -> [Pair]
forall a. a -> [a] -> [a]
: [Pair]
forall a. Monoid a => a
GHC.Base.mempty)
  toEncoding :: DeletedPrice -> Encoding
toEncoding DeletedPrice
obj = Series -> Encoding
Data.Aeson.Encoding.Internal.pairs ((Text
"id" Text -> Text -> Series
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Data.Aeson.Types.ToJSON..= DeletedPrice -> Text
deletedPriceId DeletedPrice
obj) Series -> Series -> Series
forall a. Semigroup a => a -> a -> a
GHC.Base.<> ((Text
"deleted" Text -> Value -> Series
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Data.Aeson.Types.ToJSON..= Bool -> Value
Data.Aeson.Types.Internal.Bool Bool
GHC.Types.True) Series -> Series -> Series
forall a. Semigroup a => a -> a -> a
GHC.Base.<> (Text
"object" Text -> Value -> Series
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Data.Aeson.Types.ToJSON..= Text -> Value
Data.Aeson.Types.Internal.String Text
"price")))

instance Data.Aeson.Types.FromJSON.FromJSON DeletedPrice where
  parseJSON :: Value -> Parser DeletedPrice
parseJSON = String
-> (Object -> Parser DeletedPrice) -> Value -> Parser DeletedPrice
forall a. String -> (Object -> Parser a) -> Value -> Parser a
Data.Aeson.Types.FromJSON.withObject String
"DeletedPrice" (\Object
obj -> (Text -> DeletedPrice) -> Parser (Text -> DeletedPrice)
forall (f :: * -> *) a. Applicative f => a -> f a
GHC.Base.pure Text -> DeletedPrice
DeletedPrice Parser (Text -> DeletedPrice) -> Parser Text -> Parser DeletedPrice
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
GHC.Base.<*> (Object
obj Object -> Text -> Parser Text
forall a. FromJSON a => Object -> Text -> Parser a
Data.Aeson.Types.FromJSON..: Text
"id"))

-- | Create a new 'DeletedPrice' with all required fields.
mkDeletedPrice ::
  -- | 'deletedPriceId'
  Data.Text.Internal.Text ->
  DeletedPrice
mkDeletedPrice :: Text -> DeletedPrice
mkDeletedPrice Text
deletedPriceId = DeletedPrice :: Text -> DeletedPrice
DeletedPrice {deletedPriceId :: Text
deletedPriceId = Text
deletedPriceId}