hercules-ci-api-0.8.0.0: src/Hercules/API/GitLab/CreateInstallationBuilderResponse.hs
{-# LANGUAGE DeriveAnyClass #-}
module Hercules.API.GitLab.CreateInstallationBuilderResponse where
import Hercules.API.GitLab.InstallationBuilder (InstallationBuilder)
import Hercules.API.Prelude
data CreateInstallationBuilderResponse = CreateInstallationBuilderResponse
{ ok :: Maybe InstallationBuilder,
error :: Maybe Text
}
deriving (Generic, Show, Eq, NFData, ToJSON, FromJSON, ToSchema)