{-# 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 CardIssuingAccountTermsOfService
module StripeAPI.Types.CardIssuingAccountTermsOfService 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.card_issuing_account_terms_of_service@ in the specification.
data CardIssuingAccountTermsOfService = CardIssuingAccountTermsOfService
  { -- | date: The Unix timestamp marking when the account representative accepted the service agreement.
    CardIssuingAccountTermsOfService -> Maybe Int
cardIssuingAccountTermsOfServiceDate :: (GHC.Maybe.Maybe GHC.Types.Int),
    -- | ip: The IP address from which the account representative accepted the service agreement.
    --
    -- Constraints:
    --
    -- * Maximum length of 5000
    CardIssuingAccountTermsOfService -> Maybe Text
cardIssuingAccountTermsOfServiceIp :: (GHC.Maybe.Maybe Data.Text.Internal.Text),
    -- | user_agent: The user agent of the browser from which the account representative accepted the service agreement.
    --
    -- Constraints:
    --
    -- * Maximum length of 5000
    CardIssuingAccountTermsOfService -> Maybe Text
cardIssuingAccountTermsOfServiceUserAgent :: (GHC.Maybe.Maybe Data.Text.Internal.Text)
  }
  deriving
    ( Int -> CardIssuingAccountTermsOfService -> ShowS
[CardIssuingAccountTermsOfService] -> ShowS
CardIssuingAccountTermsOfService -> String
(Int -> CardIssuingAccountTermsOfService -> ShowS)
-> (CardIssuingAccountTermsOfService -> String)
-> ([CardIssuingAccountTermsOfService] -> ShowS)
-> Show CardIssuingAccountTermsOfService
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [CardIssuingAccountTermsOfService] -> ShowS
$cshowList :: [CardIssuingAccountTermsOfService] -> ShowS
show :: CardIssuingAccountTermsOfService -> String
$cshow :: CardIssuingAccountTermsOfService -> String
showsPrec :: Int -> CardIssuingAccountTermsOfService -> ShowS
$cshowsPrec :: Int -> CardIssuingAccountTermsOfService -> ShowS
GHC.Show.Show,
      CardIssuingAccountTermsOfService
-> CardIssuingAccountTermsOfService -> Bool
(CardIssuingAccountTermsOfService
 -> CardIssuingAccountTermsOfService -> Bool)
-> (CardIssuingAccountTermsOfService
    -> CardIssuingAccountTermsOfService -> Bool)
-> Eq CardIssuingAccountTermsOfService
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: CardIssuingAccountTermsOfService
-> CardIssuingAccountTermsOfService -> Bool
$c/= :: CardIssuingAccountTermsOfService
-> CardIssuingAccountTermsOfService -> Bool
== :: CardIssuingAccountTermsOfService
-> CardIssuingAccountTermsOfService -> Bool
$c== :: CardIssuingAccountTermsOfService
-> CardIssuingAccountTermsOfService -> Bool
GHC.Classes.Eq
    )

instance Data.Aeson.Types.ToJSON.ToJSON CardIssuingAccountTermsOfService where
  toJSON :: CardIssuingAccountTermsOfService -> Value
toJSON CardIssuingAccountTermsOfService
obj = [Pair] -> Value
Data.Aeson.Types.Internal.object (Text
"date" Text -> Maybe Int -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Data.Aeson.Types.ToJSON..= CardIssuingAccountTermsOfService -> Maybe Int
cardIssuingAccountTermsOfServiceDate CardIssuingAccountTermsOfService
obj Pair -> [Pair] -> [Pair]
forall a. a -> [a] -> [a]
: Text
"ip" Text -> Maybe Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Data.Aeson.Types.ToJSON..= CardIssuingAccountTermsOfService -> Maybe Text
cardIssuingAccountTermsOfServiceIp CardIssuingAccountTermsOfService
obj Pair -> [Pair] -> [Pair]
forall a. a -> [a] -> [a]
: Text
"user_agent" Text -> Maybe Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Data.Aeson.Types.ToJSON..= CardIssuingAccountTermsOfService -> Maybe Text
cardIssuingAccountTermsOfServiceUserAgent CardIssuingAccountTermsOfService
obj Pair -> [Pair] -> [Pair]
forall a. a -> [a] -> [a]
: [Pair]
forall a. Monoid a => a
GHC.Base.mempty)
  toEncoding :: CardIssuingAccountTermsOfService -> Encoding
toEncoding CardIssuingAccountTermsOfService
obj = Series -> Encoding
Data.Aeson.Encoding.Internal.pairs ((Text
"date" Text -> Maybe Int -> Series
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Data.Aeson.Types.ToJSON..= CardIssuingAccountTermsOfService -> Maybe Int
cardIssuingAccountTermsOfServiceDate CardIssuingAccountTermsOfService
obj) Series -> Series -> Series
forall a. Semigroup a => a -> a -> a
GHC.Base.<> ((Text
"ip" Text -> Maybe Text -> Series
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Data.Aeson.Types.ToJSON..= CardIssuingAccountTermsOfService -> Maybe Text
cardIssuingAccountTermsOfServiceIp CardIssuingAccountTermsOfService
obj) Series -> Series -> Series
forall a. Semigroup a => a -> a -> a
GHC.Base.<> (Text
"user_agent" Text -> Maybe Text -> Series
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Data.Aeson.Types.ToJSON..= CardIssuingAccountTermsOfService -> Maybe Text
cardIssuingAccountTermsOfServiceUserAgent CardIssuingAccountTermsOfService
obj)))

instance Data.Aeson.Types.FromJSON.FromJSON CardIssuingAccountTermsOfService where
  parseJSON :: Value -> Parser CardIssuingAccountTermsOfService
parseJSON = String
-> (Object -> Parser CardIssuingAccountTermsOfService)
-> Value
-> Parser CardIssuingAccountTermsOfService
forall a. String -> (Object -> Parser a) -> Value -> Parser a
Data.Aeson.Types.FromJSON.withObject String
"CardIssuingAccountTermsOfService" (\Object
obj -> (((Maybe Int
 -> Maybe Text -> Maybe Text -> CardIssuingAccountTermsOfService)
-> Parser
     (Maybe Int
      -> Maybe Text -> Maybe Text -> CardIssuingAccountTermsOfService)
forall (f :: * -> *) a. Applicative f => a -> f a
GHC.Base.pure Maybe Int
-> Maybe Text -> Maybe Text -> CardIssuingAccountTermsOfService
CardIssuingAccountTermsOfService Parser
  (Maybe Int
   -> Maybe Text -> Maybe Text -> CardIssuingAccountTermsOfService)
-> Parser (Maybe Int)
-> Parser
     (Maybe Text -> Maybe Text -> CardIssuingAccountTermsOfService)
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
"date")) Parser
  (Maybe Text -> Maybe Text -> CardIssuingAccountTermsOfService)
-> Parser (Maybe Text)
-> Parser (Maybe Text -> CardIssuingAccountTermsOfService)
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
GHC.Base.<*> (Object
obj Object -> Text -> Parser (Maybe Text)
forall a. FromJSON a => Object -> Text -> Parser (Maybe a)
Data.Aeson.Types.FromJSON..:? Text
"ip")) Parser (Maybe Text -> CardIssuingAccountTermsOfService)
-> Parser (Maybe Text) -> Parser CardIssuingAccountTermsOfService
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
GHC.Base.<*> (Object
obj Object -> Text -> Parser (Maybe Text)
forall a. FromJSON a => Object -> Text -> Parser (Maybe a)
Data.Aeson.Types.FromJSON..:? Text
"user_agent"))

-- | Create a new 'CardIssuingAccountTermsOfService' with all required fields.
mkCardIssuingAccountTermsOfService :: CardIssuingAccountTermsOfService
mkCardIssuingAccountTermsOfService :: CardIssuingAccountTermsOfService
mkCardIssuingAccountTermsOfService =
  CardIssuingAccountTermsOfService :: Maybe Int
-> Maybe Text -> Maybe Text -> CardIssuingAccountTermsOfService
CardIssuingAccountTermsOfService
    { cardIssuingAccountTermsOfServiceDate :: Maybe Int
cardIssuingAccountTermsOfServiceDate = Maybe Int
forall a. Maybe a
GHC.Maybe.Nothing,
      cardIssuingAccountTermsOfServiceIp :: Maybe Text
cardIssuingAccountTermsOfServiceIp = Maybe Text
forall a. Maybe a
GHC.Maybe.Nothing,
      cardIssuingAccountTermsOfServiceUserAgent :: Maybe Text
cardIssuingAccountTermsOfServiceUserAgent = Maybe Text
forall a. Maybe a
GHC.Maybe.Nothing
    }