{-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE OverloadedStrings #-} -- CHANGE WITH CAUTION: This is a generated code file generated by https://github.com/Haskell-OpenAPI-Code-Generator/Haskell-OpenAPI-Client-Code-Generator. -- | Contains the types generated from the schema SetupIntentNextAction module StripeAPI.Types.SetupIntentNextAction where import qualified Data.Aeson 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.ToJSON import qualified Data.Aeson as Data.Aeson.Types.Internal 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.Generics import qualified GHC.Int import qualified GHC.Show import qualified GHC.Types import qualified StripeAPI.Common import StripeAPI.Types.SetupIntentNextActionRedirectToUrl import qualified Prelude as GHC.Integer.Type import qualified Prelude as GHC.Maybe -- | Defines the data type for the schema setup_intent_next_action data SetupIntentNextAction = SetupIntentNextAction { -- | redirect_to_url: setupIntentNextActionRedirectToUrl :: (GHC.Maybe.Maybe SetupIntentNextActionRedirectToUrl), -- | type: Type of the next action to perform, one of \`redirect_to_url\` or \`use_stripe_sdk\`. -- -- Constraints: -- -- * Maximum length of 5000 setupIntentNextActionType :: Data.Text.Internal.Text, -- | use_stripe_sdk: When confirming a SetupIntent with Stripe.js, Stripe.js depends on the contents of this dictionary to invoke authentication flows. The shape of the contents is subject to change and is only intended to be used by Stripe.js. setupIntentNextActionUseStripeSdk :: (GHC.Maybe.Maybe SetupIntentNextActionUseStripeSdk') } deriving ( GHC.Show.Show, GHC.Classes.Eq ) instance Data.Aeson.ToJSON SetupIntentNextAction where toJSON obj = Data.Aeson.object ((Data.Aeson..=) "redirect_to_url" (setupIntentNextActionRedirectToUrl obj) : (Data.Aeson..=) "type" (setupIntentNextActionType obj) : (Data.Aeson..=) "use_stripe_sdk" (setupIntentNextActionUseStripeSdk obj) : []) toEncoding obj = Data.Aeson.pairs ((Data.Aeson..=) "redirect_to_url" (setupIntentNextActionRedirectToUrl obj) GHC.Base.<> ((Data.Aeson..=) "type" (setupIntentNextActionType obj) GHC.Base.<> (Data.Aeson..=) "use_stripe_sdk" (setupIntentNextActionUseStripeSdk obj))) instance Data.Aeson.Types.FromJSON.FromJSON SetupIntentNextAction where parseJSON = Data.Aeson.Types.FromJSON.withObject "SetupIntentNextAction" (\obj -> ((GHC.Base.pure SetupIntentNextAction GHC.Base.<*> (obj Data.Aeson.Types.FromJSON..:? "redirect_to_url")) GHC.Base.<*> (obj Data.Aeson.Types.FromJSON..: "type")) GHC.Base.<*> (obj Data.Aeson.Types.FromJSON..:? "use_stripe_sdk")) -- | Defines the data type for the schema setup_intent_next_actionUse_stripe_sdk\' -- -- When confirming a SetupIntent with Stripe.js, Stripe.js depends on the contents of this dictionary to invoke authentication flows. The shape of the contents is subject to change and is only intended to be used by Stripe.js. data SetupIntentNextActionUseStripeSdk' = SetupIntentNextActionUseStripeSdk' { } deriving ( GHC.Show.Show, GHC.Classes.Eq ) instance Data.Aeson.ToJSON SetupIntentNextActionUseStripeSdk' where toJSON obj = Data.Aeson.object [] toEncoding obj = Data.Aeson.pairs ((Data.Aeson..=) "string" ("string" :: GHC.Base.String)) instance Data.Aeson.Types.FromJSON.FromJSON SetupIntentNextActionUseStripeSdk' where parseJSON = Data.Aeson.Types.FromJSON.withObject "SetupIntentNextActionUseStripeSdk'" (\obj -> GHC.Base.pure SetupIntentNextActionUseStripeSdk')