{-# LANGUAGE ExplicitForAll #-}
{-# LANGUAGE MultiWayIf #-}
{-# LANGUAGE OverloadedStrings #-}
module RecurlyClient.Operations.Collect_invoice 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
import qualified Data.ByteString as Data.ByteString.Internal
import qualified Data.ByteString as Data.ByteString.Internal.Type
import qualified Data.Either
import qualified Data.Foldable
import qualified Data.Functor
import qualified Data.Maybe
import qualified Data.Scientific
import qualified Data.Text
import qualified Data.Text as 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 RecurlyClient.Common
import RecurlyClient.Types
import qualified Prelude as GHC.Integer.Type
import qualified Prelude as GHC.Maybe
collect_invoice ::
forall m.
(RecurlyClient.Common.MonadHTTP m) =>
Data.Text.Internal.Text ->
GHC.Maybe.Maybe InvoiceCollect ->
RecurlyClient.Common.ClientT m (Network.HTTP.Client.Types.Response Collect_invoiceResponse)
collect_invoice :: forall (m :: * -> *).
MonadHTTP m =>
Text
-> Maybe InvoiceCollect
-> ClientT m (Response Collect_invoiceResponse)
collect_invoice
Text
invoice_id
Maybe InvoiceCollect
body =
(Response ByteString -> Response Collect_invoiceResponse)
-> ClientT m (Response ByteString)
-> ClientT m (Response Collect_invoiceResponse)
forall a b. (a -> b) -> ClientT m a -> ClientT m b
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
GHC.Base.fmap
( \Response ByteString
response_0 ->
(ByteString -> Collect_invoiceResponse)
-> Response ByteString -> Response Collect_invoiceResponse
forall a b. (a -> b) -> Response a -> Response b
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
GHC.Base.fmap
( (String -> Collect_invoiceResponse)
-> (Collect_invoiceResponse -> Collect_invoiceResponse)
-> Either String Collect_invoiceResponse
-> Collect_invoiceResponse
forall a c b. (a -> c) -> (b -> c) -> Either a b -> c
Data.Either.either String -> Collect_invoiceResponse
Collect_invoiceResponseError Collect_invoiceResponse -> Collect_invoiceResponse
forall a. a -> a
GHC.Base.id
(Either String Collect_invoiceResponse -> Collect_invoiceResponse)
-> (ByteString -> Either String Collect_invoiceResponse)
-> ByteString
-> Collect_invoiceResponse
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) ->
Invoice -> Collect_invoiceResponse
Collect_invoiceResponse200
(Invoice -> Collect_invoiceResponse)
-> Either String Invoice -> Either String Collect_invoiceResponse
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Data.Functor.<$> ( ByteString -> Either String Invoice
forall a. FromJSON a => ByteString -> Either String a
Data.Aeson.eitherDecodeStrict ByteString
body ::
Data.Either.Either
GHC.Base.String
Invoice
)
| (\Status
status_2 -> Status -> Int
Network.HTTP.Types.Status.statusCode Status
status_2 Int -> Int -> Bool
forall a. Eq a => a -> a -> Bool
GHC.Classes.== Int
404) (Response ByteString -> Status
forall body. Response body -> Status
Network.HTTP.Client.Types.responseStatus Response ByteString
response) ->
Error -> Collect_invoiceResponse
Collect_invoiceResponse404
(Error -> Collect_invoiceResponse)
-> Either String Error -> Either String Collect_invoiceResponse
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
)
| (\Status
status_3 -> Status -> Int
Network.HTTP.Types.Status.statusCode Status
status_3 Int -> Int -> Bool
forall a. Eq a => a -> a -> Bool
GHC.Classes.== Int
422) (Response ByteString -> Status
forall body. Response body -> Status
Network.HTTP.Client.Types.responseStatus Response ByteString
response) ->
ErrorMayHaveTransaction -> Collect_invoiceResponse
Collect_invoiceResponse422
(ErrorMayHaveTransaction -> Collect_invoiceResponse)
-> Either String ErrorMayHaveTransaction
-> Either String Collect_invoiceResponse
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Data.Functor.<$> ( ByteString -> Either String ErrorMayHaveTransaction
forall a. FromJSON a => ByteString -> Either String a
Data.Aeson.eitherDecodeStrict ByteString
body ::
Data.Either.Either
GHC.Base.String
ErrorMayHaveTransaction
)
| 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 -> Collect_invoiceResponse
Collect_invoiceResponseDefault
(Error -> Collect_invoiceResponse)
-> Either String Error -> Either String Collect_invoiceResponse
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 Collect_invoiceResponse
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 InvoiceCollect
-> RequestBodyEncoding
-> ClientT m (Response ByteString)
forall (m :: * -> *) body.
(MonadHTTP m, ToJSON body) =>
Text
-> Text
-> [QueryParameter]
-> Maybe body
-> RequestBodyEncoding
-> ClientT m (Response ByteString)
RecurlyClient.Common.doBodyCallWithConfigurationM (Text -> Text
Data.Text.toUpper (Text -> Text) -> Text -> Text
forall a b. (a -> b) -> a -> b
GHC.Base.$ String -> Text
Data.Text.Internal.pack String
"PUT") (Text
"/invoices/" Text -> Text -> Text
forall a. Semigroup a => a -> a -> a
GHC.Base.<> (ByteString -> Text
RecurlyClient.Common.byteToText (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.$ (Text -> ByteString
RecurlyClient.Common.textToByte (Text -> ByteString) -> Text -> ByteString
forall a b. (a -> b) -> a -> b
GHC.Base.$ Text -> Text
forall a. ToJSON a => a -> Text
RecurlyClient.Common.stringifyModel Text
invoice_id)) Text -> Text -> Text
forall a. Semigroup a => a -> a -> a
GHC.Base.<> Text
"/collect")) [QueryParameter]
forall a. Monoid a => a
GHC.Base.mempty Maybe InvoiceCollect
body RequestBodyEncoding
RecurlyClient.Common.RequestBodyEncodingJSON)
data Collect_invoiceResponse
=
Collect_invoiceResponseError GHC.Base.String
|
Collect_invoiceResponse200 Invoice
|
Collect_invoiceResponse404 Error
|
Collect_invoiceResponse422 ErrorMayHaveTransaction
|
Collect_invoiceResponseDefault Error
deriving (Int -> Collect_invoiceResponse -> ShowS
[Collect_invoiceResponse] -> ShowS
Collect_invoiceResponse -> String
(Int -> Collect_invoiceResponse -> ShowS)
-> (Collect_invoiceResponse -> String)
-> ([Collect_invoiceResponse] -> ShowS)
-> Show Collect_invoiceResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> Collect_invoiceResponse -> ShowS
showsPrec :: Int -> Collect_invoiceResponse -> ShowS
$cshow :: Collect_invoiceResponse -> String
show :: Collect_invoiceResponse -> String
$cshowList :: [Collect_invoiceResponse] -> ShowS
showList :: [Collect_invoiceResponse] -> ShowS
GHC.Show.Show, Collect_invoiceResponse -> Collect_invoiceResponse -> Bool
(Collect_invoiceResponse -> Collect_invoiceResponse -> Bool)
-> (Collect_invoiceResponse -> Collect_invoiceResponse -> Bool)
-> Eq Collect_invoiceResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: Collect_invoiceResponse -> Collect_invoiceResponse -> Bool
== :: Collect_invoiceResponse -> Collect_invoiceResponse -> Bool
$c/= :: Collect_invoiceResponse -> Collect_invoiceResponse -> Bool
/= :: Collect_invoiceResponse -> Collect_invoiceResponse -> Bool
GHC.Classes.Eq)
collect_invoiceWithConfiguration ::
forall m.
(RecurlyClient.Common.MonadHTTP m) =>
RecurlyClient.Common.Configuration ->
Data.Text.Internal.Text ->
GHC.Maybe.Maybe InvoiceCollect ->
m (Network.HTTP.Client.Types.Response Collect_invoiceResponse)
collect_invoiceWithConfiguration :: forall (m :: * -> *).
MonadHTTP m =>
Configuration
-> Text
-> Maybe InvoiceCollect
-> m (Response Collect_invoiceResponse)
collect_invoiceWithConfiguration
Configuration
config
Text
invoice_id
Maybe InvoiceCollect
body =
(Response ByteString -> Response Collect_invoiceResponse)
-> m (Response ByteString) -> m (Response Collect_invoiceResponse)
forall a b. (a -> b) -> m a -> m b
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
GHC.Base.fmap
( \Response ByteString
response_4 ->
(ByteString -> Collect_invoiceResponse)
-> Response ByteString -> Response Collect_invoiceResponse
forall a b. (a -> b) -> Response a -> Response b
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
GHC.Base.fmap
( (String -> Collect_invoiceResponse)
-> (Collect_invoiceResponse -> Collect_invoiceResponse)
-> Either String Collect_invoiceResponse
-> Collect_invoiceResponse
forall a c b. (a -> c) -> (b -> c) -> Either a b -> c
Data.Either.either String -> Collect_invoiceResponse
Collect_invoiceResponseError Collect_invoiceResponse -> Collect_invoiceResponse
forall a. a -> a
GHC.Base.id
(Either String Collect_invoiceResponse -> Collect_invoiceResponse)
-> (ByteString -> Either String Collect_invoiceResponse)
-> ByteString
-> Collect_invoiceResponse
forall b c a. (b -> c) -> (a -> b) -> a -> c
GHC.Base.. ( \Response ByteString
response ByteString
body ->
if
| (\Status
status_5 -> Status -> Int
Network.HTTP.Types.Status.statusCode Status
status_5 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) ->
Invoice -> Collect_invoiceResponse
Collect_invoiceResponse200
(Invoice -> Collect_invoiceResponse)
-> Either String Invoice -> Either String Collect_invoiceResponse
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Data.Functor.<$> ( ByteString -> Either String Invoice
forall a. FromJSON a => ByteString -> Either String a
Data.Aeson.eitherDecodeStrict ByteString
body ::
Data.Either.Either
GHC.Base.String
Invoice
)
| (\Status
status_6 -> Status -> Int
Network.HTTP.Types.Status.statusCode Status
status_6 Int -> Int -> Bool
forall a. Eq a => a -> a -> Bool
GHC.Classes.== Int
404) (Response ByteString -> Status
forall body. Response body -> Status
Network.HTTP.Client.Types.responseStatus Response ByteString
response) ->
Error -> Collect_invoiceResponse
Collect_invoiceResponse404
(Error -> Collect_invoiceResponse)
-> Either String Error -> Either String Collect_invoiceResponse
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
)
| (\Status
status_7 -> Status -> Int
Network.HTTP.Types.Status.statusCode Status
status_7 Int -> Int -> Bool
forall a. Eq a => a -> a -> Bool
GHC.Classes.== Int
422) (Response ByteString -> Status
forall body. Response body -> Status
Network.HTTP.Client.Types.responseStatus Response ByteString
response) ->
ErrorMayHaveTransaction -> Collect_invoiceResponse
Collect_invoiceResponse422
(ErrorMayHaveTransaction -> Collect_invoiceResponse)
-> Either String ErrorMayHaveTransaction
-> Either String Collect_invoiceResponse
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Data.Functor.<$> ( ByteString -> Either String ErrorMayHaveTransaction
forall a. FromJSON a => ByteString -> Either String a
Data.Aeson.eitherDecodeStrict ByteString
body ::
Data.Either.Either
GHC.Base.String
ErrorMayHaveTransaction
)
| 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 -> Collect_invoiceResponse
Collect_invoiceResponseDefault
(Error -> Collect_invoiceResponse)
-> Either String Error -> Either String Collect_invoiceResponse
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 Collect_invoiceResponse
forall a b. a -> Either a b
Data.Either.Left String
"Missing default response type"
)
Response ByteString
response_4
)
Response ByteString
response_4
)
(Configuration
-> Text
-> Text
-> [QueryParameter]
-> Maybe InvoiceCollect
-> RequestBodyEncoding
-> m (Response ByteString)
forall (m :: * -> *) body.
(MonadHTTP m, ToJSON body) =>
Configuration
-> Text
-> Text
-> [QueryParameter]
-> Maybe body
-> RequestBodyEncoding
-> m (Response ByteString)
RecurlyClient.Common.doBodyCallWithConfiguration Configuration
config (Text -> Text
Data.Text.toUpper (Text -> Text) -> Text -> Text
forall a b. (a -> b) -> a -> b
GHC.Base.$ String -> Text
Data.Text.Internal.pack String
"PUT") (Text
"/invoices/" Text -> Text -> Text
forall a. Semigroup a => a -> a -> a
GHC.Base.<> (ByteString -> Text
RecurlyClient.Common.byteToText (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.$ (Text -> ByteString
RecurlyClient.Common.textToByte (Text -> ByteString) -> Text -> ByteString
forall a b. (a -> b) -> a -> b
GHC.Base.$ Text -> Text
forall a. ToJSON a => a -> Text
RecurlyClient.Common.stringifyModel Text
invoice_id)) Text -> Text -> Text
forall a. Semigroup a => a -> a -> a
GHC.Base.<> Text
"/collect")) [QueryParameter]
forall a. Monoid a => a
GHC.Base.mempty Maybe InvoiceCollect
body RequestBodyEncoding
RecurlyClient.Common.RequestBodyEncodingJSON)
collect_invoiceRaw ::
forall m.
(RecurlyClient.Common.MonadHTTP m) =>
Data.Text.Internal.Text ->
GHC.Maybe.Maybe InvoiceCollect ->
RecurlyClient.Common.ClientT m (Network.HTTP.Client.Types.Response Data.ByteString.Internal.Type.ByteString)
collect_invoiceRaw :: forall (m :: * -> *).
MonadHTTP m =>
Text -> Maybe InvoiceCollect -> ClientT m (Response ByteString)
collect_invoiceRaw
Text
invoice_id
Maybe InvoiceCollect
body = ClientT m (Response ByteString) -> ClientT m (Response ByteString)
forall a. a -> a
GHC.Base.id (Text
-> Text
-> [QueryParameter]
-> Maybe InvoiceCollect
-> RequestBodyEncoding
-> ClientT m (Response ByteString)
forall (m :: * -> *) body.
(MonadHTTP m, ToJSON body) =>
Text
-> Text
-> [QueryParameter]
-> Maybe body
-> RequestBodyEncoding
-> ClientT m (Response ByteString)
RecurlyClient.Common.doBodyCallWithConfigurationM (Text -> Text
Data.Text.toUpper (Text -> Text) -> Text -> Text
forall a b. (a -> b) -> a -> b
GHC.Base.$ String -> Text
Data.Text.Internal.pack String
"PUT") (Text
"/invoices/" Text -> Text -> Text
forall a. Semigroup a => a -> a -> a
GHC.Base.<> (ByteString -> Text
RecurlyClient.Common.byteToText (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.$ (Text -> ByteString
RecurlyClient.Common.textToByte (Text -> ByteString) -> Text -> ByteString
forall a b. (a -> b) -> a -> b
GHC.Base.$ Text -> Text
forall a. ToJSON a => a -> Text
RecurlyClient.Common.stringifyModel Text
invoice_id)) Text -> Text -> Text
forall a. Semigroup a => a -> a -> a
GHC.Base.<> Text
"/collect")) [QueryParameter]
forall a. Monoid a => a
GHC.Base.mempty Maybe InvoiceCollect
body RequestBodyEncoding
RecurlyClient.Common.RequestBodyEncodingJSON)
collect_invoiceWithConfigurationRaw ::
forall m.
(RecurlyClient.Common.MonadHTTP m) =>
RecurlyClient.Common.Configuration ->
Data.Text.Internal.Text ->
GHC.Maybe.Maybe InvoiceCollect ->
m (Network.HTTP.Client.Types.Response Data.ByteString.Internal.Type.ByteString)
collect_invoiceWithConfigurationRaw :: forall (m :: * -> *).
MonadHTTP m =>
Configuration
-> Text -> Maybe InvoiceCollect -> m (Response ByteString)
collect_invoiceWithConfigurationRaw
Configuration
config
Text
invoice_id
Maybe InvoiceCollect
body = m (Response ByteString) -> m (Response ByteString)
forall a. a -> a
GHC.Base.id (Configuration
-> Text
-> Text
-> [QueryParameter]
-> Maybe InvoiceCollect
-> RequestBodyEncoding
-> m (Response ByteString)
forall (m :: * -> *) body.
(MonadHTTP m, ToJSON body) =>
Configuration
-> Text
-> Text
-> [QueryParameter]
-> Maybe body
-> RequestBodyEncoding
-> m (Response ByteString)
RecurlyClient.Common.doBodyCallWithConfiguration Configuration
config (Text -> Text
Data.Text.toUpper (Text -> Text) -> Text -> Text
forall a b. (a -> b) -> a -> b
GHC.Base.$ String -> Text
Data.Text.Internal.pack String
"PUT") (Text
"/invoices/" Text -> Text -> Text
forall a. Semigroup a => a -> a -> a
GHC.Base.<> (ByteString -> Text
RecurlyClient.Common.byteToText (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.$ (Text -> ByteString
RecurlyClient.Common.textToByte (Text -> ByteString) -> Text -> ByteString
forall a b. (a -> b) -> a -> b
GHC.Base.$ Text -> Text
forall a. ToJSON a => a -> Text
RecurlyClient.Common.stringifyModel Text
invoice_id)) Text -> Text -> Text
forall a. Semigroup a => a -> a -> a
GHC.Base.<> Text
"/collect")) [QueryParameter]
forall a. Monoid a => a
GHC.Base.mempty Maybe InvoiceCollect
body RequestBodyEncoding
RecurlyClient.Common.RequestBodyEncodingJSON)