packages feed

hydra-0.8.0: src/gen-main/haskell/Hydra/Ext/Protobuf/Any.hs

-- | Based on https://github.com/protocolbuffers/protobuf/blob/main/src/google/protobuf/any.proto

module Hydra.Ext.Protobuf.Any where

import qualified Hydra.Core as Core
import Data.Int
import Data.List as L
import Data.Map as M
import Data.Set as S

-- | `Any` contains an arbitrary serialized protocol buffer message along with a URL that describes the type of the serialized message.
data Any = 
  Any {
    -- | A URL/resource name that uniquely identifies the type of the serialized protocol buffer message.
    anyTypeUrl :: String,
    -- | Must be a valid serialized protocol buffer of the above specified type.
    anyValue :: String}
  deriving (Eq, Ord, Read, Show)

_Any = (Core.Name "hydra/ext/protobuf/any.Any")

_Any_typeUrl = (Core.Name "typeUrl")

_Any_value = (Core.Name "value")