Skip to content

Latest commit

 

History

History
21 lines (10 loc) · 702 Bytes

PrimitiveType.md

File metadata and controls

21 lines (10 loc) · 702 Bytes

PrimitiveType

CEL primitive types. - BOOL: Boolean type. - INT64: Int64 type. Proto-based integer values are widened to int64. - UINT64: Uint64 type. Proto-based unsigned integer values are widened to uint64. - DOUBLE: Double type. Proto-based float values are widened to double values. - STRING: String type. - BYTES: Bytes type.

Enum

  • BOOL (value: 'BOOL')

  • INT64 (value: 'INT64')

  • UINT64 (value: 'UINT64')

  • DOUBLE (value: 'DOUBLE')

  • STRING (value: 'STRING')

  • BYTES (value: 'BYTES')

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