The below code is throwing a compile error:
"Abnormal termination with unhandled exception. Exception key: a76d7897-189b-4bde-be62-7d5383a61c4f. System.NotSupportedException: The type <Class> is not support."
[SysODataActionAttribute("UpdateEndUserLinesV2", false),
SysODataCollectionAttribute("_lines", Types::Class, classStr(WSTG_EndUserLine))]
public static str updateEndUserLinesV2(str _lotId, List _lines)
{
// do something
return "Test";
}
How do I tell the compiler I am expecting a list of "WSTG_EndUserLine" ?