hercules-ci-api-0.6.0.0: src/Hercules/API/Build/DerivationEvent/BuiltOutput.hs
{-# LANGUAGE DeriveAnyClass #-}
module Hercules.API.Build.DerivationEvent.BuiltOutput where
import Hercules.API.Prelude
data BuiltOutput = BuiltOutput
{ outputName :: Text,
outputPath :: Text,
hash :: Text,
size :: Int64
}
deriving (Generic, Show, Eq, NFData, ToJSON, FromJSON, ToSchema)