projectProjectidDocumentBrowsePost method

Future<Response<FwStandardSqlServerFwJsonDataTable>> projectProjectidDocumentBrowsePost({
  1. required String? projectid,
  2. required FwStandardModelsBrowseRequest? body,
})

Get documents. @param projectid Unique identifier

Implementation

Future<chopper.Response<FwStandardSqlServerFwJsonDataTable>>
    projectProjectidDocumentBrowsePost({
  required String? projectid,
  required FwStandardModelsBrowseRequest? body,
}) {
  generatedMapping.putIfAbsent(FwStandardSqlServerFwJsonDataTable,
      () => FwStandardSqlServerFwJsonDataTable.fromJsonFactory);

  return _projectProjectidDocumentBrowsePost(
      projectid: projectid, body: body);
}