| Copyright | (c) 2024 GYELD GMBH |
|---|---|
| License | Apache 2.0 |
| Maintainer | [email protected] |
| Stability | develop |
| Safe Haskell | None |
| Language | GHC2021 |
GeniusYield.Types.TxMetadata.Internal
Description
Internal module defining the GYTxMetadataValue type and exposing all it's constructors.
Documentation
data GYTxMetadataValue #
A value in the transaction metadata.
Constructors
| GYTxMetaMap [(GYTxMetadataValue, GYTxMetadataValue)] | |
| GYTxMetaList [GYTxMetadataValue] | |
| GYTxMetaNumber Integer | |
| GYTxMetaBytes ByteString | |
| GYTxMetaText Text |
Instances
| Show GYTxMetadataValue # | |
Defined in GeniusYield.Types.TxMetadata.Internal Methods showsPrec :: Int -> GYTxMetadataValue -> ShowS # show :: GYTxMetadataValue -> String # showList :: [GYTxMetadataValue] -> ShowS # | |
| Eq GYTxMetadataValue # | |
Defined in GeniusYield.Types.TxMetadata.Internal Methods (==) :: GYTxMetadataValue -> GYTxMetadataValue -> Bool # (/=) :: GYTxMetadataValue -> GYTxMetadataValue -> Bool # | |
| Ord GYTxMetadataValue # | |
Defined in GeniusYield.Types.TxMetadata.Internal Methods compare :: GYTxMetadataValue -> GYTxMetadataValue -> Ordering # (<) :: GYTxMetadataValue -> GYTxMetadataValue -> Bool # (<=) :: GYTxMetadataValue -> GYTxMetadataValue -> Bool # (>) :: GYTxMetadataValue -> GYTxMetadataValue -> Bool # (>=) :: GYTxMetadataValue -> GYTxMetadataValue -> Bool # max :: GYTxMetadataValue -> GYTxMetadataValue -> GYTxMetadataValue # min :: GYTxMetadataValue -> GYTxMetadataValue -> GYTxMetadataValue # | |