{-# 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 SubscriptionItemBillingThresholds
module StripeAPI.Types.SubscriptionItemBillingThresholds 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.subscription_item_billing_thresholds@ in the specification.
data SubscriptionItemBillingThresholds = SubscriptionItemBillingThresholds
  { -- | usage_gte: Usage threshold that triggers the subscription to create an invoice
    SubscriptionItemBillingThresholds -> Maybe Int
subscriptionItemBillingThresholdsUsageGte :: (GHC.Maybe.Maybe GHC.Types.Int)
  }
  deriving
    ( Int -> SubscriptionItemBillingThresholds -> ShowS
[SubscriptionItemBillingThresholds] -> ShowS
SubscriptionItemBillingThresholds -> String
(Int -> SubscriptionItemBillingThresholds -> ShowS)
-> (SubscriptionItemBillingThresholds -> String)
-> ([SubscriptionItemBillingThresholds] -> ShowS)
-> Show SubscriptionItemBillingThresholds
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [SubscriptionItemBillingThresholds] -> ShowS
$cshowList :: [SubscriptionItemBillingThresholds] -> ShowS
show :: SubscriptionItemBillingThresholds -> String
$cshow :: SubscriptionItemBillingThresholds -> String
showsPrec :: Int -> SubscriptionItemBillingThresholds -> ShowS
$cshowsPrec :: Int -> SubscriptionItemBillingThresholds -> ShowS
GHC.Show.Show,
      SubscriptionItemBillingThresholds
-> SubscriptionItemBillingThresholds -> Bool
(SubscriptionItemBillingThresholds
 -> SubscriptionItemBillingThresholds -> Bool)
-> (SubscriptionItemBillingThresholds
    -> SubscriptionItemBillingThresholds -> Bool)
-> Eq SubscriptionItemBillingThresholds
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: SubscriptionItemBillingThresholds
-> SubscriptionItemBillingThresholds -> Bool
$c/= :: SubscriptionItemBillingThresholds
-> SubscriptionItemBillingThresholds -> Bool
== :: SubscriptionItemBillingThresholds
-> SubscriptionItemBillingThresholds -> Bool
$c== :: SubscriptionItemBillingThresholds
-> SubscriptionItemBillingThresholds -> Bool
GHC.Classes.Eq
    )

instance Data.Aeson.Types.ToJSON.ToJSON SubscriptionItemBillingThresholds where
  toJSON :: SubscriptionItemBillingThresholds -> Value
toJSON SubscriptionItemBillingThresholds
obj = [Pair] -> Value
Data.Aeson.Types.Internal.object (Text
"usage_gte" Text -> Maybe Int -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Data.Aeson.Types.ToJSON..= SubscriptionItemBillingThresholds -> Maybe Int
subscriptionItemBillingThresholdsUsageGte SubscriptionItemBillingThresholds
obj Pair -> [Pair] -> [Pair]
forall a. a -> [a] -> [a]
: [Pair]
forall a. Monoid a => a
GHC.Base.mempty)
  toEncoding :: SubscriptionItemBillingThresholds -> Encoding
toEncoding SubscriptionItemBillingThresholds
obj = Series -> Encoding
Data.Aeson.Encoding.Internal.pairs (Text
"usage_gte" Text -> Maybe Int -> Series
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Data.Aeson.Types.ToJSON..= SubscriptionItemBillingThresholds -> Maybe Int
subscriptionItemBillingThresholdsUsageGte SubscriptionItemBillingThresholds
obj)

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

-- | Create a new 'SubscriptionItemBillingThresholds' with all required fields.
mkSubscriptionItemBillingThresholds :: SubscriptionItemBillingThresholds
mkSubscriptionItemBillingThresholds :: SubscriptionItemBillingThresholds
mkSubscriptionItemBillingThresholds = SubscriptionItemBillingThresholds :: Maybe Int -> SubscriptionItemBillingThresholds
SubscriptionItemBillingThresholds {subscriptionItemBillingThresholdsUsageGte :: Maybe Int
subscriptionItemBillingThresholdsUsageGte = Maybe Int
forall a. Maybe a
GHC.Maybe.Nothing}