@@ -454,19 +454,19 @@ Available Types:
454
454
| | Examples: array<string, string>, |
455
455
| | array<string, MyNamespace\M yObject>, etc. |
456
456
+------------------------------------------------------------+--------------------------------------------------+
457
- | enum<'Color'> | Enum of type Color, use its case values |
457
+ | enum<T> | Enum of type Color, use its case values |
458
458
| | for serialization and deserialization |
459
459
| | if the enum is a backed enum, |
460
460
| | use its case names if it is not a backed enum. |
461
461
+------------------------------------------------------------+--------------------------------------------------+
462
- | enum<'Color' , 'name'> | Enum of type Color, use its case names |
462
+ | enum<T , 'name'> | Enum of type Color, use its case names |
463
463
| | (as string) for serialization |
464
464
| | and deserialization. |
465
465
+------------------------------------------------------------+--------------------------------------------------+
466
- | enum<'Color' , 'value'> | Backed Enum of type Color, use its case value |
466
+ | enum<T , 'value'> | Backed Enum of type Color, use its case value |
467
467
| | for serialization and deserialization. |
468
468
+------------------------------------------------------------+--------------------------------------------------+
469
- | enum<'Color' , 'value', 'integer'> | Backed Enum of type Color, use its case value |
469
+ | enum<T , 'value', 'integer'> | Backed Enum of type Color, use its case value |
470
470
| | (forced as integer) for serialization |
471
471
| | and deserialization. |
472
472
+------------------------------------------------------------+--------------------------------------------------+
0 commit comments