{-# 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)