hercules-ci-api-0.6.0.0: src/Hercules/API/Agents/FullClusterJoinToken.hs
{-# LANGUAGE DeriveAnyClass #-}
module Hercules.API.Agents.FullClusterJoinToken where
import Hercules.API.Agents.ClusterJoinToken
( ClusterJoinToken,
)
import Hercules.API.Prelude
data FullClusterJoinToken = FullClusterJoinToken
{ metadata :: ClusterJoinToken,
token :: Text
}
deriving (Generic, Show, Eq, NFData, ToJSON, FromJSON, ToSchema)