File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 33<#@ include file="SharedObjC.template.tt"#>
44<#
55
6- var func = host.CurrentType.AsOdcmMethod();
6+ OdcmMethod func = host.CurrentType.AsOdcmMethod();
77var entityName = writer.GetPrefix() + func.Class.Name.ToUpperFirstChar();
8- var method = (func.IsFunction() ) ? "GET" : "POST";
8+ var method = (func.IsFunction) ? "GET" : "POST";
99var methodName = "request";
1010var requestType = entityName + func.Name.Substring(func.Name.IndexOf('.') + 1).ToUpperFirstChar() + "Request";
1111var requestBuilderType = requestType + "Builder";
Original file line number Diff line number Diff line change 44<#
55var func = host.CurrentType.AsOdcmMethod();
66var entityName = writer.GetPrefix() + func.Class.Name.ToUpperFirstChar();
7- var method = (func.IsFunction() ) ? "GET" : "POST";
7+ var method = (func.IsFunction) ? "GET" : "POST";
88var methodName = "request";
99var requestType = entityName + func.Name.Substring(func.Name.IndexOf('.') + 1).ToUpperFirstChar() + "Request";
1010var requestBuilderType = requestType + "Builder";
You can’t perform that action at this time.
0 commit comments