{-# 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 PaymentIntentCardProcessing module StripeAPI.Types.PaymentIntentCardProcessing 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.Foldable import qualified Data.Functor import qualified Data.Maybe 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 {-# SOURCE #-} StripeAPI.Types.PaymentIntentProcessingCustomerNotification import qualified Prelude as GHC.Integer.Type import qualified Prelude as GHC.Maybe -- | Defines the object schema located at @components.schemas.payment_intent_card_processing@ in the specification. data PaymentIntentCardProcessing = PaymentIntentCardProcessing { -- | customer_notification: paymentIntentCardProcessingCustomerNotification :: (GHC.Maybe.Maybe PaymentIntentProcessingCustomerNotification) } deriving ( GHC.Show.Show, GHC.Classes.Eq ) instance Data.Aeson.Types.ToJSON.ToJSON PaymentIntentCardProcessing where toJSON obj = Data.Aeson.Types.Internal.object (Data.Foldable.concat (Data.Maybe.maybe GHC.Base.mempty (GHC.Base.pure GHC.Base.. ("customer_notification" Data.Aeson.Types.ToJSON..=)) (paymentIntentCardProcessingCustomerNotification obj) : GHC.Base.mempty)) toEncoding obj = Data.Aeson.Encoding.Internal.pairs (GHC.Base.mconcat (Data.Foldable.concat (Data.Maybe.maybe GHC.Base.mempty (GHC.Base.pure GHC.Base.. ("customer_notification" Data.Aeson.Types.ToJSON..=)) (paymentIntentCardProcessingCustomerNotification obj) : GHC.Base.mempty))) instance Data.Aeson.Types.FromJSON.FromJSON PaymentIntentCardProcessing where parseJSON = Data.Aeson.Types.FromJSON.withObject "PaymentIntentCardProcessing" (\obj -> GHC.Base.pure PaymentIntentCardProcessing GHC.Base.<*> (obj Data.Aeson.Types.FromJSON..:! "customer_notification")) -- | Create a new 'PaymentIntentCardProcessing' with all required fields. mkPaymentIntentCardProcessing :: PaymentIntentCardProcessing mkPaymentIntentCardProcessing = PaymentIntentCardProcessing {paymentIntentCardProcessingCustomerNotification = GHC.Maybe.Nothing}