ReportRepositoryGetReportJsonRequestBody Method |
Creates serialized body of parameters needed for PDF Service Report API from report specific parameters and record information.
Namespace: Scanjour.Workflow4.Web.Services.RepositoriesAssembly: Scanjour.Workflow4.Web.Services (in Scanjour.Workflow4.Web.Services.dll) Version: 24.5.0.0 (24.5.0.0)
Syntaxpublic string GetReportJsonRequestBody(
Object reportSpecificParameters,
Record recordInfo = null,
bool includeDocumentContents = false
)
Public Function GetReportJsonRequestBody (
reportSpecificParameters As Object,
Optional recordInfo As Record = Nothing,
Optional includeDocumentContents As Boolean = false
) As String
public:
String^ GetReportJsonRequestBody(
Object^ reportSpecificParameters,
Record^ recordInfo = nullptr,
bool includeDocumentContents = false
)
member GetReportJsonRequestBody :
reportSpecificParameters : Object *
?recordInfo : Record *
?includeDocumentContents : bool
(* Defaults:
let _recordInfo = defaultArg recordInfo null
let _includeDocumentContents = defaultArg includeDocumentContents false
*)
-> string
Parameters
- reportSpecificParameters Object
- Parameters specific for the report type.
- recordInfo Record (Optional)
- Record information, must be provided and contain required by PDF Service API values if report is to be saved or updated.
- includeDocumentContents Boolean (Optional)
- Value determining whether to include the documents' content to the report. The default value is false.
Return Value
String[Missing <returns> documentation for "M:Scanjour.Workflow4.Web.Services.Repositories.ReportRepository.GetReportJsonRequestBody(System.Object,Scanjour.Process.OData.Client.Proxy.Record,System.Boolean)"]
See Also