@@ -28,8 +28,6 @@ class JspPropertyGroupDescriptor(BaseModel):
28
28
JspPropertyGroupDescriptor
29
29
""" # noqa: E501
30
30
buffer : Optional [StrictStr ] = None
31
- default_content_type : Optional [StrictStr ] = Field (default = None , alias = "defaultContentType" )
32
- url_patterns : Optional [List [StrictStr ]] = Field (default = None , alias = "urlPatterns" )
33
31
el_ignored : Optional [StrictStr ] = Field (default = None , alias = "elIgnored" )
34
32
error_on_el_not_found : Optional [StrictStr ] = Field (default = None , alias = "errorOnELNotFound" )
35
33
page_encoding : Optional [StrictStr ] = Field (default = None , alias = "pageEncoding" )
@@ -40,7 +38,9 @@ class JspPropertyGroupDescriptor(BaseModel):
40
38
deferred_syntax_allowed_as_literal : Optional [StrictStr ] = Field (default = None , alias = "deferredSyntaxAllowedAsLiteral" )
41
39
trim_directive_whitespaces : Optional [StrictStr ] = Field (default = None , alias = "trimDirectiveWhitespaces" )
42
40
error_on_undeclared_namespace : Optional [StrictStr ] = Field (default = None , alias = "errorOnUndeclaredNamespace" )
43
- __properties : ClassVar [List [str ]] = ["buffer" , "defaultContentType" , "urlPatterns" , "elIgnored" , "errorOnELNotFound" , "pageEncoding" , "scriptingInvalid" , "isXml" , "includePreludes" , "includeCodas" , "deferredSyntaxAllowedAsLiteral" , "trimDirectiveWhitespaces" , "errorOnUndeclaredNamespace" ]
41
+ default_content_type : Optional [StrictStr ] = Field (default = None , alias = "defaultContentType" )
42
+ url_patterns : Optional [List [StrictStr ]] = Field (default = None , alias = "urlPatterns" )
43
+ __properties : ClassVar [List [str ]] = ["buffer" , "elIgnored" , "errorOnELNotFound" , "pageEncoding" , "scriptingInvalid" , "isXml" , "includePreludes" , "includeCodas" , "deferredSyntaxAllowedAsLiteral" , "trimDirectiveWhitespaces" , "errorOnUndeclaredNamespace" , "defaultContentType" , "urlPatterns" ]
44
44
45
45
model_config = ConfigDict (
46
46
populate_by_name = True ,
@@ -94,8 +94,6 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
94
94
95
95
_obj = cls .model_validate ({
96
96
"buffer" : obj .get ("buffer" ),
97
- "defaultContentType" : obj .get ("defaultContentType" ),
98
- "urlPatterns" : obj .get ("urlPatterns" ),
99
97
"elIgnored" : obj .get ("elIgnored" ),
100
98
"errorOnELNotFound" : obj .get ("errorOnELNotFound" ),
101
99
"pageEncoding" : obj .get ("pageEncoding" ),
@@ -105,7 +103,9 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
105
103
"includeCodas" : obj .get ("includeCodas" ),
106
104
"deferredSyntaxAllowedAsLiteral" : obj .get ("deferredSyntaxAllowedAsLiteral" ),
107
105
"trimDirectiveWhitespaces" : obj .get ("trimDirectiveWhitespaces" ),
108
- "errorOnUndeclaredNamespace" : obj .get ("errorOnUndeclaredNamespace" )
106
+ "errorOnUndeclaredNamespace" : obj .get ("errorOnUndeclaredNamespace" ),
107
+ "defaultContentType" : obj .get ("defaultContentType" ),
108
+ "urlPatterns" : obj .get ("urlPatterns" )
109
109
})
110
110
return _obj
111
111
0 commit comments