{-# 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 deleteSubscriptionsSubscriptionExposedId
module StripeAPI.Operations.DeleteSubscriptionsSubscriptionExposedId 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

-- | > DELETE /v1/subscriptions/{subscription_exposed_id}
--
-- \<p>Cancels a customer’s subscription immediately. The customer will not be charged again for the subscription.\<\/p>
--
-- \<p>Note, however, that any pending invoice items that you’ve created will still be charged for at the end of the period, unless manually \<a href=\"\#delete_invoiceitem\">deleted\<\/a>. If you’ve set the subscription to cancel at the end of the period, any pending prorations will also be left in place and collected at the end of the period. But if the subscription is set to cancel immediately, pending prorations will be removed.\<\/p>
--
-- \<p>By default, upon subscription cancellation, Stripe will stop automatic collection of all finalized invoices for the customer. This is intended to prevent unexpected payment attempts after the customer has canceled a subscription. However, you can resume automatic collection of the invoices manually after subscription cancellation to have us proceed. Or, you could check for unpaid invoices before allowing the customer to cancel the subscription at all.\<\/p>
deleteSubscriptionsSubscriptionExposedId ::
  forall m.
  StripeAPI.Common.MonadHTTP m =>
  -- | subscription_exposed_id | Constraints: Maximum length of 5000
  Data.Text.Internal.Text ->
  -- | The request body to send
  GHC.Maybe.Maybe DeleteSubscriptionsSubscriptionExposedIdRequestBody ->
  -- | Monadic computation which returns the result of the operation
  StripeAPI.Common.StripeT m (Network.HTTP.Client.Types.Response DeleteSubscriptionsSubscriptionExposedIdResponse)
deleteSubscriptionsSubscriptionExposedId :: Text
-> Maybe DeleteSubscriptionsSubscriptionExposedIdRequestBody
-> StripeT
     m (Response DeleteSubscriptionsSubscriptionExposedIdResponse)
deleteSubscriptionsSubscriptionExposedId
  Text
subscriptionExposedId
  Maybe DeleteSubscriptionsSubscriptionExposedIdRequestBody
body =
    (Response ByteString
 -> Response DeleteSubscriptionsSubscriptionExposedIdResponse)
-> StripeT m (Response ByteString)
-> StripeT
     m (Response DeleteSubscriptionsSubscriptionExposedIdResponse)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
GHC.Base.fmap
      ( \Response ByteString
response_0 ->
          (ByteString -> DeleteSubscriptionsSubscriptionExposedIdResponse)
-> Response ByteString
-> Response DeleteSubscriptionsSubscriptionExposedIdResponse
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
GHC.Base.fmap
            ( (String -> DeleteSubscriptionsSubscriptionExposedIdResponse)
-> (DeleteSubscriptionsSubscriptionExposedIdResponse
    -> DeleteSubscriptionsSubscriptionExposedIdResponse)
-> Either String DeleteSubscriptionsSubscriptionExposedIdResponse
-> DeleteSubscriptionsSubscriptionExposedIdResponse
forall a c b. (a -> c) -> (b -> c) -> Either a b -> c
Data.Either.either String -> DeleteSubscriptionsSubscriptionExposedIdResponse
DeleteSubscriptionsSubscriptionExposedIdResponseError DeleteSubscriptionsSubscriptionExposedIdResponse
-> DeleteSubscriptionsSubscriptionExposedIdResponse
forall a. a -> a
GHC.Base.id
                (Either String DeleteSubscriptionsSubscriptionExposedIdResponse
 -> DeleteSubscriptionsSubscriptionExposedIdResponse)
-> (ByteString
    -> Either String DeleteSubscriptionsSubscriptionExposedIdResponse)
-> ByteString
-> DeleteSubscriptionsSubscriptionExposedIdResponse
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) ->
                                     Subscription -> DeleteSubscriptionsSubscriptionExposedIdResponse
DeleteSubscriptionsSubscriptionExposedIdResponse200
                                       (Subscription -> DeleteSubscriptionsSubscriptionExposedIdResponse)
-> Either String Subscription
-> Either String DeleteSubscriptionsSubscriptionExposedIdResponse
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Data.Functor.<$> ( ByteString -> Either String Subscription
forall a. FromJSON a => ByteString -> Either String a
Data.Aeson.eitherDecodeStrict ByteString
body ::
                                                            Data.Either.Either
                                                              GHC.Base.String
                                                              Subscription
                                                        )
                                   | 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 -> DeleteSubscriptionsSubscriptionExposedIdResponse
DeleteSubscriptionsSubscriptionExposedIdResponseDefault
                                       (Error -> DeleteSubscriptionsSubscriptionExposedIdResponse)
-> Either String Error
-> Either String DeleteSubscriptionsSubscriptionExposedIdResponse
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 DeleteSubscriptionsSubscriptionExposedIdResponse
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 DeleteSubscriptionsSubscriptionExposedIdRequestBody
-> RequestBodyEncoding
-> StripeT m (Response ByteString)
forall (m :: * -> *) body.
(MonadHTTP m, ToJSON body) =>
Text
-> Text
-> [QueryParameter]
-> Maybe body
-> RequestBodyEncoding
-> StripeT 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
"DELETE") (String -> Text
Data.Text.pack (String
"/v1/subscriptions/" 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
subscriptionExposedId)) String -> String -> String
forall a. [a] -> [a] -> [a]
GHC.Base.++ String
""))) [QueryParameter]
forall a. Monoid a => a
GHC.Base.mempty Maybe DeleteSubscriptionsSubscriptionExposedIdRequestBody
body RequestBodyEncoding
StripeAPI.Common.RequestBodyEncodingFormData)

-- | Defines the object schema located at @paths.\/v1\/subscriptions\/{subscription_exposed_id}.DELETE.requestBody.content.application\/x-www-form-urlencoded.schema@ in the specification.
data DeleteSubscriptionsSubscriptionExposedIdRequestBody = DeleteSubscriptionsSubscriptionExposedIdRequestBody
  { -- | expand: Specifies which fields in the response should be expanded.
    DeleteSubscriptionsSubscriptionExposedIdRequestBody -> Maybe [Text]
deleteSubscriptionsSubscriptionExposedIdRequestBodyExpand :: (GHC.Maybe.Maybe ([Data.Text.Internal.Text])),
    -- | invoice_now: Will generate a final invoice that invoices for any un-invoiced metered usage and new\/pending proration invoice items.
    DeleteSubscriptionsSubscriptionExposedIdRequestBody -> Maybe Bool
deleteSubscriptionsSubscriptionExposedIdRequestBodyInvoiceNow :: (GHC.Maybe.Maybe GHC.Types.Bool),
    -- | prorate: Will generate a proration invoice item that credits remaining unused time until the subscription period end.
    DeleteSubscriptionsSubscriptionExposedIdRequestBody -> Maybe Bool
deleteSubscriptionsSubscriptionExposedIdRequestBodyProrate :: (GHC.Maybe.Maybe GHC.Types.Bool)
  }
  deriving
    ( Int
-> DeleteSubscriptionsSubscriptionExposedIdRequestBody
-> String
-> String
[DeleteSubscriptionsSubscriptionExposedIdRequestBody]
-> String -> String
DeleteSubscriptionsSubscriptionExposedIdRequestBody -> String
(Int
 -> DeleteSubscriptionsSubscriptionExposedIdRequestBody
 -> String
 -> String)
-> (DeleteSubscriptionsSubscriptionExposedIdRequestBody -> String)
-> ([DeleteSubscriptionsSubscriptionExposedIdRequestBody]
    -> String -> String)
-> Show DeleteSubscriptionsSubscriptionExposedIdRequestBody
forall a.
(Int -> a -> String -> String)
-> (a -> String) -> ([a] -> String -> String) -> Show a
showList :: [DeleteSubscriptionsSubscriptionExposedIdRequestBody]
-> String -> String
$cshowList :: [DeleteSubscriptionsSubscriptionExposedIdRequestBody]
-> String -> String
show :: DeleteSubscriptionsSubscriptionExposedIdRequestBody -> String
$cshow :: DeleteSubscriptionsSubscriptionExposedIdRequestBody -> String
showsPrec :: Int
-> DeleteSubscriptionsSubscriptionExposedIdRequestBody
-> String
-> String
$cshowsPrec :: Int
-> DeleteSubscriptionsSubscriptionExposedIdRequestBody
-> String
-> String
GHC.Show.Show,
      DeleteSubscriptionsSubscriptionExposedIdRequestBody
-> DeleteSubscriptionsSubscriptionExposedIdRequestBody -> Bool
(DeleteSubscriptionsSubscriptionExposedIdRequestBody
 -> DeleteSubscriptionsSubscriptionExposedIdRequestBody -> Bool)
-> (DeleteSubscriptionsSubscriptionExposedIdRequestBody
    -> DeleteSubscriptionsSubscriptionExposedIdRequestBody -> Bool)
-> Eq DeleteSubscriptionsSubscriptionExposedIdRequestBody
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DeleteSubscriptionsSubscriptionExposedIdRequestBody
-> DeleteSubscriptionsSubscriptionExposedIdRequestBody -> Bool
$c/= :: DeleteSubscriptionsSubscriptionExposedIdRequestBody
-> DeleteSubscriptionsSubscriptionExposedIdRequestBody -> Bool
== :: DeleteSubscriptionsSubscriptionExposedIdRequestBody
-> DeleteSubscriptionsSubscriptionExposedIdRequestBody -> Bool
$c== :: DeleteSubscriptionsSubscriptionExposedIdRequestBody
-> DeleteSubscriptionsSubscriptionExposedIdRequestBody -> Bool
GHC.Classes.Eq
    )

instance Data.Aeson.Types.ToJSON.ToJSON DeleteSubscriptionsSubscriptionExposedIdRequestBody where
  toJSON :: DeleteSubscriptionsSubscriptionExposedIdRequestBody -> Value
toJSON DeleteSubscriptionsSubscriptionExposedIdRequestBody
obj = [Pair] -> Value
Data.Aeson.Types.Internal.object (Text
"expand" Text -> Maybe [Text] -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Data.Aeson.Types.ToJSON..= DeleteSubscriptionsSubscriptionExposedIdRequestBody -> Maybe [Text]
deleteSubscriptionsSubscriptionExposedIdRequestBodyExpand DeleteSubscriptionsSubscriptionExposedIdRequestBody
obj Pair -> [Pair] -> [Pair]
forall a. a -> [a] -> [a]
: Text
"invoice_now" Text -> Maybe Bool -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Data.Aeson.Types.ToJSON..= DeleteSubscriptionsSubscriptionExposedIdRequestBody -> Maybe Bool
deleteSubscriptionsSubscriptionExposedIdRequestBodyInvoiceNow DeleteSubscriptionsSubscriptionExposedIdRequestBody
obj Pair -> [Pair] -> [Pair]
forall a. a -> [a] -> [a]
: Text
"prorate" Text -> Maybe Bool -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Data.Aeson.Types.ToJSON..= DeleteSubscriptionsSubscriptionExposedIdRequestBody -> Maybe Bool
deleteSubscriptionsSubscriptionExposedIdRequestBodyProrate DeleteSubscriptionsSubscriptionExposedIdRequestBody
obj Pair -> [Pair] -> [Pair]
forall a. a -> [a] -> [a]
: [Pair]
forall a. Monoid a => a
GHC.Base.mempty)
  toEncoding :: DeleteSubscriptionsSubscriptionExposedIdRequestBody -> Encoding
toEncoding DeleteSubscriptionsSubscriptionExposedIdRequestBody
obj = Series -> Encoding
Data.Aeson.Encoding.Internal.pairs ((Text
"expand" Text -> Maybe [Text] -> Series
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Data.Aeson.Types.ToJSON..= DeleteSubscriptionsSubscriptionExposedIdRequestBody -> Maybe [Text]
deleteSubscriptionsSubscriptionExposedIdRequestBodyExpand DeleteSubscriptionsSubscriptionExposedIdRequestBody
obj) Series -> Series -> Series
forall a. Semigroup a => a -> a -> a
GHC.Base.<> ((Text
"invoice_now" Text -> Maybe Bool -> Series
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Data.Aeson.Types.ToJSON..= DeleteSubscriptionsSubscriptionExposedIdRequestBody -> Maybe Bool
deleteSubscriptionsSubscriptionExposedIdRequestBodyInvoiceNow DeleteSubscriptionsSubscriptionExposedIdRequestBody
obj) Series -> Series -> Series
forall a. Semigroup a => a -> a -> a
GHC.Base.<> (Text
"prorate" Text -> Maybe Bool -> Series
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Data.Aeson.Types.ToJSON..= DeleteSubscriptionsSubscriptionExposedIdRequestBody -> Maybe Bool
deleteSubscriptionsSubscriptionExposedIdRequestBodyProrate DeleteSubscriptionsSubscriptionExposedIdRequestBody
obj)))

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

-- | Create a new 'DeleteSubscriptionsSubscriptionExposedIdRequestBody' with all required fields.
mkDeleteSubscriptionsSubscriptionExposedIdRequestBody :: DeleteSubscriptionsSubscriptionExposedIdRequestBody
mkDeleteSubscriptionsSubscriptionExposedIdRequestBody :: DeleteSubscriptionsSubscriptionExposedIdRequestBody
mkDeleteSubscriptionsSubscriptionExposedIdRequestBody =
  DeleteSubscriptionsSubscriptionExposedIdRequestBody :: Maybe [Text]
-> Maybe Bool
-> Maybe Bool
-> DeleteSubscriptionsSubscriptionExposedIdRequestBody
DeleteSubscriptionsSubscriptionExposedIdRequestBody
    { deleteSubscriptionsSubscriptionExposedIdRequestBodyExpand :: Maybe [Text]
deleteSubscriptionsSubscriptionExposedIdRequestBodyExpand = Maybe [Text]
forall a. Maybe a
GHC.Maybe.Nothing,
      deleteSubscriptionsSubscriptionExposedIdRequestBodyInvoiceNow :: Maybe Bool
deleteSubscriptionsSubscriptionExposedIdRequestBodyInvoiceNow = Maybe Bool
forall a. Maybe a
GHC.Maybe.Nothing,
      deleteSubscriptionsSubscriptionExposedIdRequestBodyProrate :: Maybe Bool
deleteSubscriptionsSubscriptionExposedIdRequestBodyProrate = Maybe Bool
forall a. Maybe a
GHC.Maybe.Nothing
    }

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