hercules-ci-api-agent-0.4.1.0: src/Hercules/API/Agent/Effect/EffectTask.hs
{-# LANGUAGE DataKinds #-}
{-# LANGUAGE DeriveAnyClass #-}
module Hercules.API.Agent.Effect.EffectTask where
import Hercules.API.Prelude
import Hercules.API.Task (Task)
data EffectTask = EffectTask
{ id :: Id (Task EffectTask),
derivationPath :: Text,
logToken :: Text,
inputDerivationOutputPaths :: [Text],
token :: Text,
projectId :: Id "project",
projectPath :: Text
}
deriving (Generic, Show, Eq, NFData, ToJSON, FromJSON)