File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
python/rpdk/java/templates Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change 11// This is a generated file. Modifications will be overwritten.
22package {{ package_name }};
33
4+ import com .fasterxml .jackson .annotation .JsonAutoDetect ;
5+ import com .fasterxml .jackson .annotation .JsonAutoDetect .Visibility ;
6+ import com .fasterxml .jackson .annotation .JsonIgnore ;
47import com .fasterxml .jackson .annotation .JsonProperty ;
58import java .util .Map ;
69import java .util .List ;
1518@ Builder
1619@ AllArgsConstructor
1720@ NoArgsConstructor
21+ @ JsonAutoDetect (fieldVisibility = Visibility .ANY , getterVisibility = Visibility .NONE , setterVisibility = Visibility .NONE )
1822public class {{ model_name |uppercase_first_letter }} {
1923 {% for name , type in properties .items () %}
2024 @ JsonProperty ("{{ name }}" )
You can’t perform that action at this time.
0 commit comments