Jiwa 7.184 API Compile Error
Hi Mike,
The following section of the API generated code is producing an error, it's the HttpResult that the compiler doesn't like, for the time being I have simply commented it out.
The following section of the API generated code is producing an error, it's the HttpResult that the compiler doesn't like, for the time being I have simply commented it out.
- Code: Select all
[Route("/Reports/{ReportID}/PDF/Download", "POST")]
[ApiResponse(Description = "Not authenticated", StatusCode = 401)]
[ApiResponse(Description = "No report with the ReportID. provided was found", StatusCode = 404)]
[ApiResponse(Description = "Not authorised", StatusCode = 403)]
[ApiResponse(Description = "OK", StatusCode = 200)]
public partial class ReportsPDFPOSTRequest
: IReturn<HttpResult>
{
public ReportsPDFPOSTRequest()
{
ReportParameters = new List<ReportParameter> { };
}
public virtual string ReportID { get; set; }
public virtual List<ReportParameter> ReportParameters { get; set; }
}