{-# 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 getCreditNotesCreditNoteLines
module StripeAPI.Operations.GetCreditNotesCreditNoteLines 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

-- | > GET /v1/credit_notes/{credit_note}/lines
--
-- \<p>When retrieving a credit note, you’ll get a \<strong>lines\<\/strong> property containing the the first handful of those items. There is also a URL where you can retrieve the full (paginated) list of line items.\<\/p>
getCreditNotesCreditNoteLines ::
  forall m.
  StripeAPI.Common.MonadHTTP m =>
  -- | Contains all available parameters of this operation (query and path parameters)
  GetCreditNotesCreditNoteLinesParameters ->
  -- | Monadic computation which returns the result of the operation
  StripeAPI.Common.StripeT m (Network.HTTP.Client.Types.Response GetCreditNotesCreditNoteLinesResponse)
getCreditNotesCreditNoteLines :: GetCreditNotesCreditNoteLinesParameters
-> StripeT m (Response GetCreditNotesCreditNoteLinesResponse)
getCreditNotesCreditNoteLines GetCreditNotesCreditNoteLinesParameters
parameters =
  (Response ByteString
 -> Response GetCreditNotesCreditNoteLinesResponse)
-> StripeT m (Response ByteString)
-> StripeT m (Response GetCreditNotesCreditNoteLinesResponse)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
GHC.Base.fmap
    ( \Response ByteString
response_0 ->
        (ByteString -> GetCreditNotesCreditNoteLinesResponse)
-> Response ByteString
-> Response GetCreditNotesCreditNoteLinesResponse
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
GHC.Base.fmap
          ( (String -> GetCreditNotesCreditNoteLinesResponse)
-> (GetCreditNotesCreditNoteLinesResponse
    -> GetCreditNotesCreditNoteLinesResponse)
-> Either String GetCreditNotesCreditNoteLinesResponse
-> GetCreditNotesCreditNoteLinesResponse
forall a c b. (a -> c) -> (b -> c) -> Either a b -> c
Data.Either.either String -> GetCreditNotesCreditNoteLinesResponse
GetCreditNotesCreditNoteLinesResponseError GetCreditNotesCreditNoteLinesResponse
-> GetCreditNotesCreditNoteLinesResponse
forall a. a -> a
GHC.Base.id
              (Either String GetCreditNotesCreditNoteLinesResponse
 -> GetCreditNotesCreditNoteLinesResponse)
-> (ByteString
    -> Either String GetCreditNotesCreditNoteLinesResponse)
-> ByteString
-> GetCreditNotesCreditNoteLinesResponse
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) ->
                                   GetCreditNotesCreditNoteLinesResponseBody200
-> GetCreditNotesCreditNoteLinesResponse
GetCreditNotesCreditNoteLinesResponse200
                                     (GetCreditNotesCreditNoteLinesResponseBody200
 -> GetCreditNotesCreditNoteLinesResponse)
-> Either String GetCreditNotesCreditNoteLinesResponseBody200
-> Either String GetCreditNotesCreditNoteLinesResponse
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Data.Functor.<$> ( ByteString
-> Either String GetCreditNotesCreditNoteLinesResponseBody200
forall a. FromJSON a => ByteString -> Either String a
Data.Aeson.eitherDecodeStrict ByteString
body ::
                                                          Data.Either.Either
                                                            GHC.Base.String
                                                            GetCreditNotesCreditNoteLinesResponseBody200
                                                      )
                                 | 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 -> GetCreditNotesCreditNoteLinesResponse
GetCreditNotesCreditNoteLinesResponseDefault
                                     (Error -> GetCreditNotesCreditNoteLinesResponse)
-> Either String Error
-> Either String GetCreditNotesCreditNoteLinesResponse
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 GetCreditNotesCreditNoteLinesResponse
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] -> StripeT m (Response ByteString)
forall (m :: * -> *).
MonadHTTP m =>
Text -> Text -> [QueryParameter] -> StripeT m (Response ByteString)
StripeAPI.Common.doCallWithConfigurationM
        (Text -> Text
Data.Text.toUpper (Text -> Text) -> Text -> Text
forall a b. (a -> b) -> a -> b
GHC.Base.$ String -> Text
Data.Text.pack String
"GET")
        (String -> Text
Data.Text.pack (String
"/v1/credit_notes/" 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 (GetCreditNotesCreditNoteLinesParameters -> Text
getCreditNotesCreditNoteLinesParametersPathCreditNote GetCreditNotesCreditNoteLinesParameters
parameters))) String -> String -> String
forall a. [a] -> [a] -> [a]
GHC.Base.++ String
"/lines")))
        [ Text -> Maybe Value -> Text -> Bool -> QueryParameter
StripeAPI.Common.QueryParameter (String -> Text
Data.Text.pack String
"ending_before") (Text -> Value
forall a. ToJSON a => a -> Value
Data.Aeson.Types.ToJSON.toJSON (Text -> Value) -> Maybe Text -> Maybe Value
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Data.Functor.<$> GetCreditNotesCreditNoteLinesParameters -> Maybe Text
getCreditNotesCreditNoteLinesParametersQueryEndingBefore GetCreditNotesCreditNoteLinesParameters
parameters) (String -> Text
Data.Text.pack String
"form") Bool
GHC.Types.True,
          Text -> Maybe Value -> Text -> Bool -> QueryParameter
StripeAPI.Common.QueryParameter (String -> Text
Data.Text.pack String
"expand") ([Text] -> Value
forall a. ToJSON a => a -> Value
Data.Aeson.Types.ToJSON.toJSON ([Text] -> Value) -> Maybe [Text] -> Maybe Value
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Data.Functor.<$> GetCreditNotesCreditNoteLinesParameters -> Maybe [Text]
getCreditNotesCreditNoteLinesParametersQueryExpand GetCreditNotesCreditNoteLinesParameters
parameters) (String -> Text
Data.Text.pack String
"deepObject") Bool
GHC.Types.True,
          Text -> Maybe Value -> Text -> Bool -> QueryParameter
StripeAPI.Common.QueryParameter (String -> Text
Data.Text.pack String
"limit") (Int -> Value
forall a. ToJSON a => a -> Value
Data.Aeson.Types.ToJSON.toJSON (Int -> Value) -> Maybe Int -> Maybe Value
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Data.Functor.<$> GetCreditNotesCreditNoteLinesParameters -> Maybe Int
getCreditNotesCreditNoteLinesParametersQueryLimit GetCreditNotesCreditNoteLinesParameters
parameters) (String -> Text
Data.Text.pack String
"form") Bool
GHC.Types.True,
          Text -> Maybe Value -> Text -> Bool -> QueryParameter
StripeAPI.Common.QueryParameter (String -> Text
Data.Text.pack String
"starting_after") (Text -> Value
forall a. ToJSON a => a -> Value
Data.Aeson.Types.ToJSON.toJSON (Text -> Value) -> Maybe Text -> Maybe Value
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Data.Functor.<$> GetCreditNotesCreditNoteLinesParameters -> Maybe Text
getCreditNotesCreditNoteLinesParametersQueryStartingAfter GetCreditNotesCreditNoteLinesParameters
parameters) (String -> Text
Data.Text.pack String
"form") Bool
GHC.Types.True
        ]
    )

-- | Defines the object schema located at @paths.\/v1\/credit_notes\/{credit_note}\/lines.GET.parameters@ in the specification.
data GetCreditNotesCreditNoteLinesParameters = GetCreditNotesCreditNoteLinesParameters
  { -- | pathCredit_note: Represents the parameter named \'credit_note\'
    --
    -- Constraints:
    --
    -- * Maximum length of 5000
    GetCreditNotesCreditNoteLinesParameters -> Text
getCreditNotesCreditNoteLinesParametersPathCreditNote :: Data.Text.Internal.Text,
    -- | queryEnding_before: Represents the parameter named \'ending_before\'
    --
    -- A cursor for use in pagination. \`ending_before\` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, starting with \`obj_bar\`, your subsequent call can include \`ending_before=obj_bar\` in order to fetch the previous page of the list.
    --
    -- Constraints:
    --
    -- * Maximum length of 5000
    GetCreditNotesCreditNoteLinesParameters -> Maybe Text
getCreditNotesCreditNoteLinesParametersQueryEndingBefore :: (GHC.Maybe.Maybe Data.Text.Internal.Text),
    -- | queryExpand: Represents the parameter named \'expand\'
    --
    -- Specifies which fields in the response should be expanded.
    GetCreditNotesCreditNoteLinesParameters -> Maybe [Text]
getCreditNotesCreditNoteLinesParametersQueryExpand :: (GHC.Maybe.Maybe ([Data.Text.Internal.Text])),
    -- | queryLimit: Represents the parameter named \'limit\'
    --
    -- A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.
    GetCreditNotesCreditNoteLinesParameters -> Maybe Int
getCreditNotesCreditNoteLinesParametersQueryLimit :: (GHC.Maybe.Maybe GHC.Types.Int),
    -- | queryStarting_after: Represents the parameter named \'starting_after\'
    --
    -- A cursor for use in pagination. \`starting_after\` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with \`obj_foo\`, your subsequent call can include \`starting_after=obj_foo\` in order to fetch the next page of the list.
    --
    -- Constraints:
    --
    -- * Maximum length of 5000
    GetCreditNotesCreditNoteLinesParameters -> Maybe Text
getCreditNotesCreditNoteLinesParametersQueryStartingAfter :: (GHC.Maybe.Maybe Data.Text.Internal.Text)
  }
  deriving
    ( Int -> GetCreditNotesCreditNoteLinesParameters -> String -> String
[GetCreditNotesCreditNoteLinesParameters] -> String -> String
GetCreditNotesCreditNoteLinesParameters -> String
(Int
 -> GetCreditNotesCreditNoteLinesParameters -> String -> String)
-> (GetCreditNotesCreditNoteLinesParameters -> String)
-> ([GetCreditNotesCreditNoteLinesParameters] -> String -> String)
-> Show GetCreditNotesCreditNoteLinesParameters
forall a.
(Int -> a -> String -> String)
-> (a -> String) -> ([a] -> String -> String) -> Show a
showList :: [GetCreditNotesCreditNoteLinesParameters] -> String -> String
$cshowList :: [GetCreditNotesCreditNoteLinesParameters] -> String -> String
show :: GetCreditNotesCreditNoteLinesParameters -> String
$cshow :: GetCreditNotesCreditNoteLinesParameters -> String
showsPrec :: Int -> GetCreditNotesCreditNoteLinesParameters -> String -> String
$cshowsPrec :: Int -> GetCreditNotesCreditNoteLinesParameters -> String -> String
GHC.Show.Show,
      GetCreditNotesCreditNoteLinesParameters
-> GetCreditNotesCreditNoteLinesParameters -> Bool
(GetCreditNotesCreditNoteLinesParameters
 -> GetCreditNotesCreditNoteLinesParameters -> Bool)
-> (GetCreditNotesCreditNoteLinesParameters
    -> GetCreditNotesCreditNoteLinesParameters -> Bool)
-> Eq GetCreditNotesCreditNoteLinesParameters
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: GetCreditNotesCreditNoteLinesParameters
-> GetCreditNotesCreditNoteLinesParameters -> Bool
$c/= :: GetCreditNotesCreditNoteLinesParameters
-> GetCreditNotesCreditNoteLinesParameters -> Bool
== :: GetCreditNotesCreditNoteLinesParameters
-> GetCreditNotesCreditNoteLinesParameters -> Bool
$c== :: GetCreditNotesCreditNoteLinesParameters
-> GetCreditNotesCreditNoteLinesParameters -> Bool
GHC.Classes.Eq
    )

instance Data.Aeson.Types.ToJSON.ToJSON GetCreditNotesCreditNoteLinesParameters where
  toJSON :: GetCreditNotesCreditNoteLinesParameters -> Value
toJSON GetCreditNotesCreditNoteLinesParameters
obj = [Pair] -> Value
Data.Aeson.Types.Internal.object (Text
"pathCredit_note" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Data.Aeson.Types.ToJSON..= GetCreditNotesCreditNoteLinesParameters -> Text
getCreditNotesCreditNoteLinesParametersPathCreditNote GetCreditNotesCreditNoteLinesParameters
obj Pair -> [Pair] -> [Pair]
forall a. a -> [a] -> [a]
: Text
"queryEnding_before" Text -> Maybe Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Data.Aeson.Types.ToJSON..= GetCreditNotesCreditNoteLinesParameters -> Maybe Text
getCreditNotesCreditNoteLinesParametersQueryEndingBefore GetCreditNotesCreditNoteLinesParameters
obj Pair -> [Pair] -> [Pair]
forall a. a -> [a] -> [a]
: Text
"queryExpand" Text -> Maybe [Text] -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Data.Aeson.Types.ToJSON..= GetCreditNotesCreditNoteLinesParameters -> Maybe [Text]
getCreditNotesCreditNoteLinesParametersQueryExpand GetCreditNotesCreditNoteLinesParameters
obj Pair -> [Pair] -> [Pair]
forall a. a -> [a] -> [a]
: Text
"queryLimit" Text -> Maybe Int -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Data.Aeson.Types.ToJSON..= GetCreditNotesCreditNoteLinesParameters -> Maybe Int
getCreditNotesCreditNoteLinesParametersQueryLimit GetCreditNotesCreditNoteLinesParameters
obj Pair -> [Pair] -> [Pair]
forall a. a -> [a] -> [a]
: Text
"queryStarting_after" Text -> Maybe Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Data.Aeson.Types.ToJSON..= GetCreditNotesCreditNoteLinesParameters -> Maybe Text
getCreditNotesCreditNoteLinesParametersQueryStartingAfter GetCreditNotesCreditNoteLinesParameters
obj Pair -> [Pair] -> [Pair]
forall a. a -> [a] -> [a]
: [Pair]
forall a. Monoid a => a
GHC.Base.mempty)
  toEncoding :: GetCreditNotesCreditNoteLinesParameters -> Encoding
toEncoding GetCreditNotesCreditNoteLinesParameters
obj = Series -> Encoding
Data.Aeson.Encoding.Internal.pairs ((Text
"pathCredit_note" Text -> Text -> Series
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Data.Aeson.Types.ToJSON..= GetCreditNotesCreditNoteLinesParameters -> Text
getCreditNotesCreditNoteLinesParametersPathCreditNote GetCreditNotesCreditNoteLinesParameters
obj) Series -> Series -> Series
forall a. Semigroup a => a -> a -> a
GHC.Base.<> ((Text
"queryEnding_before" Text -> Maybe Text -> Series
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Data.Aeson.Types.ToJSON..= GetCreditNotesCreditNoteLinesParameters -> Maybe Text
getCreditNotesCreditNoteLinesParametersQueryEndingBefore GetCreditNotesCreditNoteLinesParameters
obj) Series -> Series -> Series
forall a. Semigroup a => a -> a -> a
GHC.Base.<> ((Text
"queryExpand" Text -> Maybe [Text] -> Series
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Data.Aeson.Types.ToJSON..= GetCreditNotesCreditNoteLinesParameters -> Maybe [Text]
getCreditNotesCreditNoteLinesParametersQueryExpand GetCreditNotesCreditNoteLinesParameters
obj) Series -> Series -> Series
forall a. Semigroup a => a -> a -> a
GHC.Base.<> ((Text
"queryLimit" Text -> Maybe Int -> Series
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Data.Aeson.Types.ToJSON..= GetCreditNotesCreditNoteLinesParameters -> Maybe Int
getCreditNotesCreditNoteLinesParametersQueryLimit GetCreditNotesCreditNoteLinesParameters
obj) Series -> Series -> Series
forall a. Semigroup a => a -> a -> a
GHC.Base.<> (Text
"queryStarting_after" Text -> Maybe Text -> Series
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Data.Aeson.Types.ToJSON..= GetCreditNotesCreditNoteLinesParameters -> Maybe Text
getCreditNotesCreditNoteLinesParametersQueryStartingAfter GetCreditNotesCreditNoteLinesParameters
obj)))))

instance Data.Aeson.Types.FromJSON.FromJSON GetCreditNotesCreditNoteLinesParameters where
  parseJSON :: Value -> Parser GetCreditNotesCreditNoteLinesParameters
parseJSON = String
-> (Object -> Parser GetCreditNotesCreditNoteLinesParameters)
-> Value
-> Parser GetCreditNotesCreditNoteLinesParameters
forall a. String -> (Object -> Parser a) -> Value -> Parser a
Data.Aeson.Types.FromJSON.withObject String
"GetCreditNotesCreditNoteLinesParameters" (\Object
obj -> (((((Text
 -> Maybe Text
 -> Maybe [Text]
 -> Maybe Int
 -> Maybe Text
 -> GetCreditNotesCreditNoteLinesParameters)
-> Parser
     (Text
      -> Maybe Text
      -> Maybe [Text]
      -> Maybe Int
      -> Maybe Text
      -> GetCreditNotesCreditNoteLinesParameters)
forall (f :: * -> *) a. Applicative f => a -> f a
GHC.Base.pure Text
-> Maybe Text
-> Maybe [Text]
-> Maybe Int
-> Maybe Text
-> GetCreditNotesCreditNoteLinesParameters
GetCreditNotesCreditNoteLinesParameters Parser
  (Text
   -> Maybe Text
   -> Maybe [Text]
   -> Maybe Int
   -> Maybe Text
   -> GetCreditNotesCreditNoteLinesParameters)
-> Parser Text
-> Parser
     (Maybe Text
      -> Maybe [Text]
      -> Maybe Int
      -> Maybe Text
      -> GetCreditNotesCreditNoteLinesParameters)
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
GHC.Base.<*> (Object
obj Object -> Text -> Parser Text
forall a. FromJSON a => Object -> Text -> Parser a
Data.Aeson.Types.FromJSON..: Text
"pathCredit_note")) Parser
  (Maybe Text
   -> Maybe [Text]
   -> Maybe Int
   -> Maybe Text
   -> GetCreditNotesCreditNoteLinesParameters)
-> Parser (Maybe Text)
-> Parser
     (Maybe [Text]
      -> Maybe Int
      -> Maybe Text
      -> GetCreditNotesCreditNoteLinesParameters)
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
"queryEnding_before")) Parser
  (Maybe [Text]
   -> Maybe Int
   -> Maybe Text
   -> GetCreditNotesCreditNoteLinesParameters)
-> Parser (Maybe [Text])
-> Parser
     (Maybe Int
      -> Maybe Text -> GetCreditNotesCreditNoteLinesParameters)
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
"queryExpand")) Parser
  (Maybe Int
   -> Maybe Text -> GetCreditNotesCreditNoteLinesParameters)
-> Parser (Maybe Int)
-> Parser (Maybe Text -> GetCreditNotesCreditNoteLinesParameters)
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
"queryLimit")) Parser (Maybe Text -> GetCreditNotesCreditNoteLinesParameters)
-> Parser (Maybe Text)
-> Parser GetCreditNotesCreditNoteLinesParameters
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
"queryStarting_after"))

-- | Create a new 'GetCreditNotesCreditNoteLinesParameters' with all required fields.
mkGetCreditNotesCreditNoteLinesParameters ::
  -- | 'getCreditNotesCreditNoteLinesParametersPathCreditNote'
  Data.Text.Internal.Text ->
  GetCreditNotesCreditNoteLinesParameters
mkGetCreditNotesCreditNoteLinesParameters :: Text -> GetCreditNotesCreditNoteLinesParameters
mkGetCreditNotesCreditNoteLinesParameters Text
getCreditNotesCreditNoteLinesParametersPathCreditNote =
  GetCreditNotesCreditNoteLinesParameters :: Text
-> Maybe Text
-> Maybe [Text]
-> Maybe Int
-> Maybe Text
-> GetCreditNotesCreditNoteLinesParameters
GetCreditNotesCreditNoteLinesParameters
    { getCreditNotesCreditNoteLinesParametersPathCreditNote :: Text
getCreditNotesCreditNoteLinesParametersPathCreditNote = Text
getCreditNotesCreditNoteLinesParametersPathCreditNote,
      getCreditNotesCreditNoteLinesParametersQueryEndingBefore :: Maybe Text
getCreditNotesCreditNoteLinesParametersQueryEndingBefore = Maybe Text
forall a. Maybe a
GHC.Maybe.Nothing,
      getCreditNotesCreditNoteLinesParametersQueryExpand :: Maybe [Text]
getCreditNotesCreditNoteLinesParametersQueryExpand = Maybe [Text]
forall a. Maybe a
GHC.Maybe.Nothing,
      getCreditNotesCreditNoteLinesParametersQueryLimit :: Maybe Int
getCreditNotesCreditNoteLinesParametersQueryLimit = Maybe Int
forall a. Maybe a
GHC.Maybe.Nothing,
      getCreditNotesCreditNoteLinesParametersQueryStartingAfter :: Maybe Text
getCreditNotesCreditNoteLinesParametersQueryStartingAfter = Maybe Text
forall a. Maybe a
GHC.Maybe.Nothing
    }

-- | Represents a response of the operation 'getCreditNotesCreditNoteLines'.
--
-- 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), 'GetCreditNotesCreditNoteLinesResponseError' is used.
data GetCreditNotesCreditNoteLinesResponse
  = -- | Means either no matching case available or a parse error
    GetCreditNotesCreditNoteLinesResponseError GHC.Base.String
  | -- | Successful response.
    GetCreditNotesCreditNoteLinesResponse200 GetCreditNotesCreditNoteLinesResponseBody200
  | -- | Error response.
    GetCreditNotesCreditNoteLinesResponseDefault Error
  deriving (Int -> GetCreditNotesCreditNoteLinesResponse -> String -> String
[GetCreditNotesCreditNoteLinesResponse] -> String -> String
GetCreditNotesCreditNoteLinesResponse -> String
(Int -> GetCreditNotesCreditNoteLinesResponse -> String -> String)
-> (GetCreditNotesCreditNoteLinesResponse -> String)
-> ([GetCreditNotesCreditNoteLinesResponse] -> String -> String)
-> Show GetCreditNotesCreditNoteLinesResponse
forall a.
(Int -> a -> String -> String)
-> (a -> String) -> ([a] -> String -> String) -> Show a
showList :: [GetCreditNotesCreditNoteLinesResponse] -> String -> String
$cshowList :: [GetCreditNotesCreditNoteLinesResponse] -> String -> String
show :: GetCreditNotesCreditNoteLinesResponse -> String
$cshow :: GetCreditNotesCreditNoteLinesResponse -> String
showsPrec :: Int -> GetCreditNotesCreditNoteLinesResponse -> String -> String
$cshowsPrec :: Int -> GetCreditNotesCreditNoteLinesResponse -> String -> String
GHC.Show.Show, GetCreditNotesCreditNoteLinesResponse
-> GetCreditNotesCreditNoteLinesResponse -> Bool
(GetCreditNotesCreditNoteLinesResponse
 -> GetCreditNotesCreditNoteLinesResponse -> Bool)
-> (GetCreditNotesCreditNoteLinesResponse
    -> GetCreditNotesCreditNoteLinesResponse -> Bool)
-> Eq GetCreditNotesCreditNoteLinesResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: GetCreditNotesCreditNoteLinesResponse
-> GetCreditNotesCreditNoteLinesResponse -> Bool
$c/= :: GetCreditNotesCreditNoteLinesResponse
-> GetCreditNotesCreditNoteLinesResponse -> Bool
== :: GetCreditNotesCreditNoteLinesResponse
-> GetCreditNotesCreditNoteLinesResponse -> Bool
$c== :: GetCreditNotesCreditNoteLinesResponse
-> GetCreditNotesCreditNoteLinesResponse -> Bool
GHC.Classes.Eq)

-- | Defines the object schema located at @paths.\/v1\/credit_notes\/{credit_note}\/lines.GET.responses.200.content.application\/json.schema@ in the specification.
data GetCreditNotesCreditNoteLinesResponseBody200 = GetCreditNotesCreditNoteLinesResponseBody200
  { -- | data: Details about each object.
    GetCreditNotesCreditNoteLinesResponseBody200
-> [CreditNoteLineItem]
getCreditNotesCreditNoteLinesResponseBody200Data :: ([CreditNoteLineItem]),
    -- | has_more: True if this list has another page of items after this one that can be fetched.
    GetCreditNotesCreditNoteLinesResponseBody200 -> Bool
getCreditNotesCreditNoteLinesResponseBody200HasMore :: GHC.Types.Bool,
    -- | url: The URL where this list can be accessed.
    --
    -- Constraints:
    --
    -- * Maximum length of 5000
    GetCreditNotesCreditNoteLinesResponseBody200 -> Text
getCreditNotesCreditNoteLinesResponseBody200Url :: Data.Text.Internal.Text
  }
  deriving
    ( Int
-> GetCreditNotesCreditNoteLinesResponseBody200 -> String -> String
[GetCreditNotesCreditNoteLinesResponseBody200] -> String -> String
GetCreditNotesCreditNoteLinesResponseBody200 -> String
(Int
 -> GetCreditNotesCreditNoteLinesResponseBody200
 -> String
 -> String)
-> (GetCreditNotesCreditNoteLinesResponseBody200 -> String)
-> ([GetCreditNotesCreditNoteLinesResponseBody200]
    -> String -> String)
-> Show GetCreditNotesCreditNoteLinesResponseBody200
forall a.
(Int -> a -> String -> String)
-> (a -> String) -> ([a] -> String -> String) -> Show a
showList :: [GetCreditNotesCreditNoteLinesResponseBody200] -> String -> String
$cshowList :: [GetCreditNotesCreditNoteLinesResponseBody200] -> String -> String
show :: GetCreditNotesCreditNoteLinesResponseBody200 -> String
$cshow :: GetCreditNotesCreditNoteLinesResponseBody200 -> String
showsPrec :: Int
-> GetCreditNotesCreditNoteLinesResponseBody200 -> String -> String
$cshowsPrec :: Int
-> GetCreditNotesCreditNoteLinesResponseBody200 -> String -> String
GHC.Show.Show,
      GetCreditNotesCreditNoteLinesResponseBody200
-> GetCreditNotesCreditNoteLinesResponseBody200 -> Bool
(GetCreditNotesCreditNoteLinesResponseBody200
 -> GetCreditNotesCreditNoteLinesResponseBody200 -> Bool)
-> (GetCreditNotesCreditNoteLinesResponseBody200
    -> GetCreditNotesCreditNoteLinesResponseBody200 -> Bool)
-> Eq GetCreditNotesCreditNoteLinesResponseBody200
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: GetCreditNotesCreditNoteLinesResponseBody200
-> GetCreditNotesCreditNoteLinesResponseBody200 -> Bool
$c/= :: GetCreditNotesCreditNoteLinesResponseBody200
-> GetCreditNotesCreditNoteLinesResponseBody200 -> Bool
== :: GetCreditNotesCreditNoteLinesResponseBody200
-> GetCreditNotesCreditNoteLinesResponseBody200 -> Bool
$c== :: GetCreditNotesCreditNoteLinesResponseBody200
-> GetCreditNotesCreditNoteLinesResponseBody200 -> Bool
GHC.Classes.Eq
    )

instance Data.Aeson.Types.ToJSON.ToJSON GetCreditNotesCreditNoteLinesResponseBody200 where
  toJSON :: GetCreditNotesCreditNoteLinesResponseBody200 -> Value
toJSON GetCreditNotesCreditNoteLinesResponseBody200
obj = [Pair] -> Value
Data.Aeson.Types.Internal.object (Text
"data" Text -> [CreditNoteLineItem] -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Data.Aeson.Types.ToJSON..= GetCreditNotesCreditNoteLinesResponseBody200
-> [CreditNoteLineItem]
getCreditNotesCreditNoteLinesResponseBody200Data GetCreditNotesCreditNoteLinesResponseBody200
obj Pair -> [Pair] -> [Pair]
forall a. a -> [a] -> [a]
: Text
"has_more" Text -> Bool -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Data.Aeson.Types.ToJSON..= GetCreditNotesCreditNoteLinesResponseBody200 -> Bool
getCreditNotesCreditNoteLinesResponseBody200HasMore GetCreditNotesCreditNoteLinesResponseBody200
obj Pair -> [Pair] -> [Pair]
forall a. a -> [a] -> [a]
: Text
"url" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Data.Aeson.Types.ToJSON..= GetCreditNotesCreditNoteLinesResponseBody200 -> Text
getCreditNotesCreditNoteLinesResponseBody200Url GetCreditNotesCreditNoteLinesResponseBody200
obj Pair -> [Pair] -> [Pair]
forall a. a -> [a] -> [a]
: Text
"object" Text -> Value -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Data.Aeson.Types.ToJSON..= Text -> Value
Data.Aeson.Types.Internal.String Text
"list" Pair -> [Pair] -> [Pair]
forall a. a -> [a] -> [a]
: [Pair]
forall a. Monoid a => a
GHC.Base.mempty)
  toEncoding :: GetCreditNotesCreditNoteLinesResponseBody200 -> Encoding
toEncoding GetCreditNotesCreditNoteLinesResponseBody200
obj = Series -> Encoding
Data.Aeson.Encoding.Internal.pairs ((Text
"data" Text -> [CreditNoteLineItem] -> Series
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Data.Aeson.Types.ToJSON..= GetCreditNotesCreditNoteLinesResponseBody200
-> [CreditNoteLineItem]
getCreditNotesCreditNoteLinesResponseBody200Data GetCreditNotesCreditNoteLinesResponseBody200
obj) Series -> Series -> Series
forall a. Semigroup a => a -> a -> a
GHC.Base.<> ((Text
"has_more" Text -> Bool -> Series
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Data.Aeson.Types.ToJSON..= GetCreditNotesCreditNoteLinesResponseBody200 -> Bool
getCreditNotesCreditNoteLinesResponseBody200HasMore GetCreditNotesCreditNoteLinesResponseBody200
obj) Series -> Series -> Series
forall a. Semigroup a => a -> a -> a
GHC.Base.<> ((Text
"url" Text -> Text -> Series
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Data.Aeson.Types.ToJSON..= GetCreditNotesCreditNoteLinesResponseBody200 -> Text
getCreditNotesCreditNoteLinesResponseBody200Url GetCreditNotesCreditNoteLinesResponseBody200
obj) Series -> Series -> Series
forall a. Semigroup a => a -> a -> a
GHC.Base.<> (Text
"object" Text -> Value -> Series
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Data.Aeson.Types.ToJSON..= Text -> Value
Data.Aeson.Types.Internal.String Text
"list"))))

instance Data.Aeson.Types.FromJSON.FromJSON GetCreditNotesCreditNoteLinesResponseBody200 where
  parseJSON :: Value -> Parser GetCreditNotesCreditNoteLinesResponseBody200
parseJSON = String
-> (Object -> Parser GetCreditNotesCreditNoteLinesResponseBody200)
-> Value
-> Parser GetCreditNotesCreditNoteLinesResponseBody200
forall a. String -> (Object -> Parser a) -> Value -> Parser a
Data.Aeson.Types.FromJSON.withObject String
"GetCreditNotesCreditNoteLinesResponseBody200" (\Object
obj -> ((([CreditNoteLineItem]
 -> Bool -> Text -> GetCreditNotesCreditNoteLinesResponseBody200)
-> Parser
     ([CreditNoteLineItem]
      -> Bool -> Text -> GetCreditNotesCreditNoteLinesResponseBody200)
forall (f :: * -> *) a. Applicative f => a -> f a
GHC.Base.pure [CreditNoteLineItem]
-> Bool -> Text -> GetCreditNotesCreditNoteLinesResponseBody200
GetCreditNotesCreditNoteLinesResponseBody200 Parser
  ([CreditNoteLineItem]
   -> Bool -> Text -> GetCreditNotesCreditNoteLinesResponseBody200)
-> Parser [CreditNoteLineItem]
-> Parser
     (Bool -> Text -> GetCreditNotesCreditNoteLinesResponseBody200)
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
GHC.Base.<*> (Object
obj Object -> Text -> Parser [CreditNoteLineItem]
forall a. FromJSON a => Object -> Text -> Parser a
Data.Aeson.Types.FromJSON..: Text
"data")) Parser
  (Bool -> Text -> GetCreditNotesCreditNoteLinesResponseBody200)
-> Parser Bool
-> Parser (Text -> GetCreditNotesCreditNoteLinesResponseBody200)
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
GHC.Base.<*> (Object
obj Object -> Text -> Parser Bool
forall a. FromJSON a => Object -> Text -> Parser a
Data.Aeson.Types.FromJSON..: Text
"has_more")) Parser (Text -> GetCreditNotesCreditNoteLinesResponseBody200)
-> Parser Text
-> Parser GetCreditNotesCreditNoteLinesResponseBody200
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
GHC.Base.<*> (Object
obj Object -> Text -> Parser Text
forall a. FromJSON a => Object -> Text -> Parser a
Data.Aeson.Types.FromJSON..: Text
"url"))

-- | Create a new 'GetCreditNotesCreditNoteLinesResponseBody200' with all required fields.
mkGetCreditNotesCreditNoteLinesResponseBody200 ::
  -- | 'getCreditNotesCreditNoteLinesResponseBody200Data'
  [CreditNoteLineItem] ->
  -- | 'getCreditNotesCreditNoteLinesResponseBody200HasMore'
  GHC.Types.Bool ->
  -- | 'getCreditNotesCreditNoteLinesResponseBody200Url'
  Data.Text.Internal.Text ->
  GetCreditNotesCreditNoteLinesResponseBody200
mkGetCreditNotesCreditNoteLinesResponseBody200 :: [CreditNoteLineItem]
-> Bool -> Text -> GetCreditNotesCreditNoteLinesResponseBody200
mkGetCreditNotesCreditNoteLinesResponseBody200 [CreditNoteLineItem]
getCreditNotesCreditNoteLinesResponseBody200Data Bool
getCreditNotesCreditNoteLinesResponseBody200HasMore Text
getCreditNotesCreditNoteLinesResponseBody200Url =
  GetCreditNotesCreditNoteLinesResponseBody200 :: [CreditNoteLineItem]
-> Bool -> Text -> GetCreditNotesCreditNoteLinesResponseBody200
GetCreditNotesCreditNoteLinesResponseBody200
    { getCreditNotesCreditNoteLinesResponseBody200Data :: [CreditNoteLineItem]
getCreditNotesCreditNoteLinesResponseBody200Data = [CreditNoteLineItem]
getCreditNotesCreditNoteLinesResponseBody200Data,
      getCreditNotesCreditNoteLinesResponseBody200HasMore :: Bool
getCreditNotesCreditNoteLinesResponseBody200HasMore = Bool
getCreditNotesCreditNoteLinesResponseBody200HasMore,
      getCreditNotesCreditNoteLinesResponseBody200Url :: Text
getCreditNotesCreditNoteLinesResponseBody200Url = Text
getCreditNotesCreditNoteLinesResponseBody200Url
    }