Skip to content

Latest commit

 

History

History
17 lines (8 loc) · 883 Bytes

WellKnownType.md

File metadata and controls

17 lines (8 loc) · 883 Bytes

WellKnownType

Well-known protobuf types treated with first-class support in CEL. - WELL_KNOWN_TYPE_UNSPECIFIED: Unspecified type. - ANY: Well-known protobuf.Any type. Any types are a polymorphic message type. During type-checking they are treated like DYN types, but at runtime they are resolved to a specific message type specified at evaluation time. - TIMESTAMP: Well-known protobuf.Timestamp type, internally referenced as timestamp. - DURATION: Well-known protobuf.Duration type, internally referenced as duration.

Enum

  • WELL_KNOWN_TYPE_UNSPECIFIED (value: 'WELL_KNOWN_TYPE_UNSPECIFIED')

  • ANY (value: 'ANY')

  • TIMESTAMP (value: 'TIMESTAMP')

  • DURATION (value: 'DURATION')

[Back to Model list] [Back to API list] [Back to README]