File tree Expand file tree Collapse file tree 2 files changed +33
-1
lines changed
Templates/Java/models_generated
src/GraphODataTemplateWriter/CodeHelpers/Java Expand file tree Collapse file tree 2 files changed +33
-1
lines changed Original file line number Diff line number Diff line change @@ -37,4 +37,4 @@ import java.util.Map;
3737<#=CreatePropertyDef(((OdcmClass)c).Properties, c is OdcmComplexClass)#>
3838<#=CreateRawJsonObject()#>
3939<#=UpdatePropertiesWithinSetRawObject(((OdcmClass)c).Properties, c is OdcmComplexClass)#>
40- }
40+ <#=PostProcess(BaseTypeName(c))#> }
Original file line number Diff line number Diff line change @@ -60,5 +60,37 @@ public class CustomOverwrites
6060 "OnenotePage post(final byte[] newOnenotePage) throws ClientException;"
6161 }
6262 } ;
63+
64+ public static Dictionary < string , string > BasePlannerAssignments = new Dictionary < string , string > ( )
65+ {
66+ {
67+ "public class BasePlannerAssignments implements IJsonBackedObject {" ,
68+ "public class BasePlannerAssignments extends HashMap<String, PlannerAssignment> implements IJsonBackedObject {"
69+ }
70+ } ;
71+
72+ public static Dictionary < string , string > BasePlannerChecklistItems = new Dictionary < string , string > ( )
73+ {
74+ {
75+ "public class BasePlannerChecklistItems implements IJsonBackedObject {" ,
76+ "public class BasePlannerChecklistItems extends HashMap<String, PlannerChecklistItem> implements IJsonBackedObject {"
77+ }
78+ } ;
79+
80+ public static Dictionary < string , string > BasePlannerExternalReferences = new Dictionary < string , string > ( )
81+ {
82+ {
83+ "public class BasePlannerExternalReferences implements IJsonBackedObject {" ,
84+ "public class BasePlannerExternalReferences extends HashMap<String, Object> implements IJsonBackedObject {"
85+ }
86+ } ;
87+
88+ public static Dictionary < string , string > BasePlannerOrderHintsByAssignee = new Dictionary < string , string > ( )
89+ {
90+ {
91+ "public class BasePlannerOrderHintsByAssignee implements IJsonBackedObject {" ,
92+ "public class BasePlannerOrderHintsByAssignee extends HashMap<String, String> implements IJsonBackedObject {"
93+ }
94+ } ;
6395 }
6496}
You can’t perform that action at this time.
0 commit comments