We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d8bd6d commit 70e2be6Copy full SHA for 70e2be6
1 file changed
README.md
@@ -69,6 +69,17 @@ public class OdooProductProduct : IOdooModel
69
public int ProductTmplId { get; set; }
70
71
...
72
+
73
+ // Type of the exception activity on record.
74
+ [JsonConverter(typeof(StringEnumConverter))]
75
+ public enum ActivityExceptionDecorationOdooEnum
76
+ {
77
+ [EnumMember(Value = "warning")]
78
+ Alert = 1,
79
80
+ [EnumMember(Value = "danger")]
81
+ Error = 2,
82
+ }
83
```
84
85
0 commit comments