{-# LANGUAGE ExplicitForAll #-}
{-# 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 different functions to run the operation postApplicationFeesIdRefunds
module StripeAPI.Operations.PostApplicationFeesIdRefunds where

import qualified Control.Monad.Fail
import qualified Control.Monad.Trans.Reader
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.Either
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 Data.Vector
import qualified GHC.Base
import qualified GHC.Classes
import qualified GHC.Int
import qualified GHC.Show
import qualified GHC.Types
import qualified Network.HTTP.Client
import qualified Network.HTTP.Client as Network.HTTP.Client.Request
import qualified Network.HTTP.Client as Network.HTTP.Client.Types
import qualified Network.HTTP.Simple
import qualified Network.HTTP.Types
import qualified Network.HTTP.Types as Network.HTTP.Types.Status
import qualified Network.HTTP.Types as Network.HTTP.Types.URI
import qualified StripeAPI.Common
import StripeAPI.Types
import qualified Prelude as GHC.Integer.Type
import qualified Prelude as GHC.Maybe

-- | > POST /v1/application_fees/{id}/refunds
--
-- \<p>Refunds an application fee that has previously been collected but not yet refunded.
-- Funds will be refunded to the Stripe account from which the fee was originally collected.\<\/p>
--
-- \<p>You can optionally refund only part of an application fee.
-- You can do so multiple times, until the entire fee has been refunded.\<\/p>
--
-- \<p>Once entirely refunded, an application fee can’t be refunded again.
-- This method will raise an error when called on an already-refunded application fee,
-- or when trying to refund more money than is left on an application fee.\<\/p>
postApplicationFeesIdRefunds ::
  forall m.
  StripeAPI.Common.MonadHTTP m =>
  -- | id | Constraints: Maximum length of 5000
  Data.Text.Internal.Text ->
  -- | The request body to send
  GHC.Maybe.Maybe PostApplicationFeesIdRefundsRequestBody ->
  -- | Monadic computation which returns the result of the operation
  StripeAPI.Common.ClientT m (Network.HTTP.Client.Types.Response PostApplicationFeesIdRefundsResponse)
postApplicationFeesIdRefunds :: Text
-> Maybe PostApplicationFeesIdRefundsRequestBody
-> ClientT m (Response PostApplicationFeesIdRefundsResponse)
postApplicationFeesIdRefunds
  Text
id
  Maybe PostApplicationFeesIdRefundsRequestBody
body =
    (Response ByteString
 -> Response PostApplicationFeesIdRefundsResponse)
-> ClientT m (Response ByteString)
-> ClientT m (Response PostApplicationFeesIdRefundsResponse)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
GHC.Base.fmap
      ( \Response ByteString
response_0 ->
          (ByteString -> PostApplicationFeesIdRefundsResponse)
-> Response ByteString
-> Response PostApplicationFeesIdRefundsResponse
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
GHC.Base.fmap
            ( (String -> PostApplicationFeesIdRefundsResponse)
-> (PostApplicationFeesIdRefundsResponse
    -> PostApplicationFeesIdRefundsResponse)
-> Either String PostApplicationFeesIdRefundsResponse
-> PostApplicationFeesIdRefundsResponse
forall a c b. (a -> c) -> (b -> c) -> Either a b -> c
Data.Either.either String -> PostApplicationFeesIdRefundsResponse
PostApplicationFeesIdRefundsResponseError PostApplicationFeesIdRefundsResponse
-> PostApplicationFeesIdRefundsResponse
forall a. a -> a
GHC.Base.id
                (Either String PostApplicationFeesIdRefundsResponse
 -> PostApplicationFeesIdRefundsResponse)
-> (ByteString
    -> Either String PostApplicationFeesIdRefundsResponse)
-> ByteString
-> PostApplicationFeesIdRefundsResponse
forall b c a. (b -> c) -> (a -> b) -> a -> c
GHC.Base.. ( \Response ByteString
response ByteString
body ->
                               if
                                   | (\Status
status_1 -> Status -> Int
Network.HTTP.Types.Status.statusCode Status
status_1 Int -> Int -> Bool
forall a. Eq a => a -> a -> Bool
GHC.Classes.== Int
200) (Response ByteString -> Status
forall body. Response body -> Status
Network.HTTP.Client.Types.responseStatus Response ByteString
response) ->
                                     FeeRefund -> PostApplicationFeesIdRefundsResponse
PostApplicationFeesIdRefundsResponse200
                                       (FeeRefund -> PostApplicationFeesIdRefundsResponse)
-> Either String FeeRefund
-> Either String PostApplicationFeesIdRefundsResponse
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Data.Functor.<$> ( ByteString -> Either String FeeRefund
forall a. FromJSON a => ByteString -> Either String a
Data.Aeson.eitherDecodeStrict ByteString
body ::
                                                            Data.Either.Either
                                                              GHC.Base.String
                                                              FeeRefund
                                                        )
                                   | Bool -> Status -> Bool
forall a b. a -> b -> a
GHC.Base.const Bool
GHC.Types.True (Response ByteString -> Status
forall body. Response body -> Status
Network.HTTP.Client.Types.responseStatus Response ByteString
response) ->
                                     Error -> PostApplicationFeesIdRefundsResponse
PostApplicationFeesIdRefundsResponseDefault
                                       (Error -> PostApplicationFeesIdRefundsResponse)
-> Either String Error
-> Either String PostApplicationFeesIdRefundsResponse
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Data.Functor.<$> ( ByteString -> Either String Error
forall a. FromJSON a => ByteString -> Either String a
Data.Aeson.eitherDecodeStrict ByteString
body ::
                                                            Data.Either.Either
                                                              GHC.Base.String
                                                              Error
                                                        )
                                   | Bool
GHC.Base.otherwise -> String -> Either String PostApplicationFeesIdRefundsResponse
forall a b. a -> Either a b
Data.Either.Left String
"Missing default response type"
                           )
                  Response ByteString
response_0
            )
            Response ByteString
response_0
      )
      (Text
-> Text
-> [QueryParameter]
-> Maybe PostApplicationFeesIdRefundsRequestBody
-> RequestBodyEncoding
-> ClientT m (Response ByteString)
forall (m :: * -> *) body.
(MonadHTTP m, ToJSON body) =>
Text
-> Text
-> [QueryParameter]
-> Maybe body
-> RequestBodyEncoding
-> ClientT m (Response ByteString)
StripeAPI.Common.doBodyCallWithConfigurationM (Text -> Text
Data.Text.toUpper (Text -> Text) -> Text -> Text
forall a b. (a -> b) -> a -> b
GHC.Base.$ String -> Text
Data.Text.pack String
"POST") (String -> Text
Data.Text.pack (String
"/v1/application_fees/" String -> String -> String
forall a. [a] -> [a] -> [a]
GHC.Base.++ (ByteString -> String
Data.ByteString.Char8.unpack (Bool -> ByteString -> ByteString
Network.HTTP.Types.URI.urlEncode Bool
GHC.Types.True (ByteString -> ByteString) -> ByteString -> ByteString
forall a b. (a -> b) -> a -> b
GHC.Base.$ (String -> ByteString
Data.ByteString.Char8.pack (String -> ByteString) -> String -> ByteString
forall a b. (a -> b) -> a -> b
GHC.Base.$ Text -> String
forall a. StringifyModel a => a -> String
StripeAPI.Common.stringifyModel Text
id)) String -> String -> String
forall a. [a] -> [a] -> [a]
GHC.Base.++ String
"/refunds"))) [QueryParameter]
forall a. Monoid a => a
GHC.Base.mempty Maybe PostApplicationFeesIdRefundsRequestBody
body RequestBodyEncoding
StripeAPI.Common.RequestBodyEncodingFormData)

-- | Defines the object schema located at @paths.\/v1\/application_fees\/{id}\/refunds.POST.requestBody.content.application\/x-www-form-urlencoded.schema@ in the specification.
data PostApplicationFeesIdRefundsRequestBody = PostApplicationFeesIdRefundsRequestBody
  { -- | amount: A positive integer, in _%s_, representing how much of this fee to refund. Can refund only up to the remaining unrefunded amount of the fee.
    PostApplicationFeesIdRefundsRequestBody -> Maybe Int
postApplicationFeesIdRefundsRequestBodyAmount :: (GHC.Maybe.Maybe GHC.Types.Int),
    -- | expand: Specifies which fields in the response should be expanded.
    PostApplicationFeesIdRefundsRequestBody -> Maybe [Text]
postApplicationFeesIdRefundsRequestBodyExpand :: (GHC.Maybe.Maybe ([Data.Text.Internal.Text])),
    -- | metadata: Set of [key-value pairs](https:\/\/stripe.com\/docs\/api\/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to \`metadata\`.
    PostApplicationFeesIdRefundsRequestBody -> Maybe Object
postApplicationFeesIdRefundsRequestBodyMetadata :: (GHC.Maybe.Maybe Data.Aeson.Types.Internal.Object)
  }
  deriving
    ( Int -> PostApplicationFeesIdRefundsRequestBody -> String -> String
[PostApplicationFeesIdRefundsRequestBody] -> String -> String
PostApplicationFeesIdRefundsRequestBody -> String
(Int
 -> PostApplicationFeesIdRefundsRequestBody -> String -> String)
-> (PostApplicationFeesIdRefundsRequestBody -> String)
-> ([PostApplicationFeesIdRefundsRequestBody] -> String -> String)
-> Show PostApplicationFeesIdRefundsRequestBody
forall a.
(Int -> a -> String -> String)
-> (a -> String) -> ([a] -> String -> String) -> Show a
showList :: [PostApplicationFeesIdRefundsRequestBody] -> String -> String
$cshowList :: [PostApplicationFeesIdRefundsRequestBody] -> String -> String
show :: PostApplicationFeesIdRefundsRequestBody -> String
$cshow :: PostApplicationFeesIdRefundsRequestBody -> String
showsPrec :: Int -> PostApplicationFeesIdRefundsRequestBody -> String -> String
$cshowsPrec :: Int -> PostApplicationFeesIdRefundsRequestBody -> String -> String
GHC.Show.Show,
      PostApplicationFeesIdRefundsRequestBody
-> PostApplicationFeesIdRefundsRequestBody -> Bool
(PostApplicationFeesIdRefundsRequestBody
 -> PostApplicationFeesIdRefundsRequestBody -> Bool)
-> (PostApplicationFeesIdRefundsRequestBody
    -> PostApplicationFeesIdRefundsRequestBody -> Bool)
-> Eq PostApplicationFeesIdRefundsRequestBody
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: PostApplicationFeesIdRefundsRequestBody
-> PostApplicationFeesIdRefundsRequestBody -> Bool
$c/= :: PostApplicationFeesIdRefundsRequestBody
-> PostApplicationFeesIdRefundsRequestBody -> Bool
== :: PostApplicationFeesIdRefundsRequestBody
-> PostApplicationFeesIdRefundsRequestBody -> Bool
$c== :: PostApplicationFeesIdRefundsRequestBody
-> PostApplicationFeesIdRefundsRequestBody -> Bool
GHC.Classes.Eq
    )

instance Data.Aeson.Types.ToJSON.ToJSON PostApplicationFeesIdRefundsRequestBody where
  toJSON :: PostApplicationFeesIdRefundsRequestBody -> Value
toJSON PostApplicationFeesIdRefundsRequestBody
obj = [Pair] -> Value
Data.Aeson.Types.Internal.object (Text
"amount" Text -> Maybe Int -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Data.Aeson.Types.ToJSON..= PostApplicationFeesIdRefundsRequestBody -> Maybe Int
postApplicationFeesIdRefundsRequestBodyAmount PostApplicationFeesIdRefundsRequestBody
obj Pair -> [Pair] -> [Pair]
forall a. a -> [a] -> [a]
: Text
"expand" Text -> Maybe [Text] -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Data.Aeson.Types.ToJSON..= PostApplicationFeesIdRefundsRequestBody -> Maybe [Text]
postApplicationFeesIdRefundsRequestBodyExpand PostApplicationFeesIdRefundsRequestBody
obj Pair -> [Pair] -> [Pair]
forall a. a -> [a] -> [a]
: Text
"metadata" Text -> Maybe Object -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Data.Aeson.Types.ToJSON..= PostApplicationFeesIdRefundsRequestBody -> Maybe Object
postApplicationFeesIdRefundsRequestBodyMetadata PostApplicationFeesIdRefundsRequestBody
obj Pair -> [Pair] -> [Pair]
forall a. a -> [a] -> [a]
: [Pair]
forall a. Monoid a => a
GHC.Base.mempty)
  toEncoding :: PostApplicationFeesIdRefundsRequestBody -> Encoding
toEncoding PostApplicationFeesIdRefundsRequestBody
obj = Series -> Encoding
Data.Aeson.Encoding.Internal.pairs ((Text
"amount" Text -> Maybe Int -> Series
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Data.Aeson.Types.ToJSON..= PostApplicationFeesIdRefundsRequestBody -> Maybe Int
postApplicationFeesIdRefundsRequestBodyAmount PostApplicationFeesIdRefundsRequestBody
obj) Series -> Series -> Series
forall a. Semigroup a => a -> a -> a
GHC.Base.<> ((Text
"expand" Text -> Maybe [Text] -> Series
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Data.Aeson.Types.ToJSON..= PostApplicationFeesIdRefundsRequestBody -> Maybe [Text]
postApplicationFeesIdRefundsRequestBodyExpand PostApplicationFeesIdRefundsRequestBody
obj) Series -> Series -> Series
forall a. Semigroup a => a -> a -> a
GHC.Base.<> (Text
"metadata" Text -> Maybe Object -> Series
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Data.Aeson.Types.ToJSON..= PostApplicationFeesIdRefundsRequestBody -> Maybe Object
postApplicationFeesIdRefundsRequestBodyMetadata PostApplicationFeesIdRefundsRequestBody
obj)))

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

-- | Create a new 'PostApplicationFeesIdRefundsRequestBody' with all required fields.
mkPostApplicationFeesIdRefundsRequestBody :: PostApplicationFeesIdRefundsRequestBody
mkPostApplicationFeesIdRefundsRequestBody :: PostApplicationFeesIdRefundsRequestBody
mkPostApplicationFeesIdRefundsRequestBody =
  PostApplicationFeesIdRefundsRequestBody :: Maybe Int
-> Maybe [Text]
-> Maybe Object
-> PostApplicationFeesIdRefundsRequestBody
PostApplicationFeesIdRefundsRequestBody
    { postApplicationFeesIdRefundsRequestBodyAmount :: Maybe Int
postApplicationFeesIdRefundsRequestBodyAmount = Maybe Int
forall a. Maybe a
GHC.Maybe.Nothing,
      postApplicationFeesIdRefundsRequestBodyExpand :: Maybe [Text]
postApplicationFeesIdRefundsRequestBodyExpand = Maybe [Text]
forall a. Maybe a
GHC.Maybe.Nothing,
      postApplicationFeesIdRefundsRequestBodyMetadata :: Maybe Object
postApplicationFeesIdRefundsRequestBodyMetadata = Maybe Object
forall a. Maybe a
GHC.Maybe.Nothing
    }

-- | Represents a response of the operation 'postApplicationFeesIdRefunds'.
--
-- The response constructor is chosen by the status code of the response. If no case matches (no specific case for the response code, no range case, no default case), 'PostApplicationFeesIdRefundsResponseError' is used.
data PostApplicationFeesIdRefundsResponse
  = -- | Means either no matching case available or a parse error
    PostApplicationFeesIdRefundsResponseError GHC.Base.String
  | -- | Successful response.
    PostApplicationFeesIdRefundsResponse200 FeeRefund
  | -- | Error response.
    PostApplicationFeesIdRefundsResponseDefault Error
  deriving (Int -> PostApplicationFeesIdRefundsResponse -> String -> String
[PostApplicationFeesIdRefundsResponse] -> String -> String
PostApplicationFeesIdRefundsResponse -> String
(Int -> PostApplicationFeesIdRefundsResponse -> String -> String)
-> (PostApplicationFeesIdRefundsResponse -> String)
-> ([PostApplicationFeesIdRefundsResponse] -> String -> String)
-> Show PostApplicationFeesIdRefundsResponse
forall a.
(Int -> a -> String -> String)
-> (a -> String) -> ([a] -> String -> String) -> Show a
showList :: [PostApplicationFeesIdRefundsResponse] -> String -> String
$cshowList :: [PostApplicationFeesIdRefundsResponse] -> String -> String
show :: PostApplicationFeesIdRefundsResponse -> String
$cshow :: PostApplicationFeesIdRefundsResponse -> String
showsPrec :: Int -> PostApplicationFeesIdRefundsResponse -> String -> String
$cshowsPrec :: Int -> PostApplicationFeesIdRefundsResponse -> String -> String
GHC.Show.Show, PostApplicationFeesIdRefundsResponse
-> PostApplicationFeesIdRefundsResponse -> Bool
(PostApplicationFeesIdRefundsResponse
 -> PostApplicationFeesIdRefundsResponse -> Bool)
-> (PostApplicationFeesIdRefundsResponse
    -> PostApplicationFeesIdRefundsResponse -> Bool)
-> Eq PostApplicationFeesIdRefundsResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: PostApplicationFeesIdRefundsResponse
-> PostApplicationFeesIdRefundsResponse -> Bool
$c/= :: PostApplicationFeesIdRefundsResponse
-> PostApplicationFeesIdRefundsResponse -> Bool
== :: PostApplicationFeesIdRefundsResponse
-> PostApplicationFeesIdRefundsResponse -> Bool
$c== :: PostApplicationFeesIdRefundsResponse
-> PostApplicationFeesIdRefundsResponse -> Bool
GHC.Classes.Eq)