projectProjectidDocumentsGet method

Future<Response<FwStandardModelsGetResponseFwStandardGridsAppDocumentAppDocumentGetManyResponse>> projectProjectidDocumentsGet({
  1. required String? projectid,
  2. String? documentTypeId,
  3. String? description,
  4. String? dateStamp,
  5. int? pageNo,
  6. int? pageSize,
  7. String? sort,
})

Get documents. @param projectid Unique identifier @param DocumentTypeId Unique Identifier Filter|Sort @param Description Document description Filter|Sort @param DateStamp Document last modified data Filter|Sort @param PageNo The page number in the result set starting from 1. PageNo is required when the PageSize is specified. @param PageSize Limit result set to the specified amount. @param Sort A sort expression to use of the form: Field1:asc,Field2:desc

Implementation

Future<
        chopper.Response<
            FwStandardModelsGetResponseFwStandardGridsAppDocumentAppDocumentGetManyResponse>>
    projectProjectidDocumentsGet({
  required String? projectid,
  String? documentTypeId,
  String? description,
  String? dateStamp,
  int? pageNo,
  int? pageSize,
  String? sort,
}) {
  generatedMapping.putIfAbsent(
      FwStandardModelsGetResponseFwStandardGridsAppDocumentAppDocumentGetManyResponse,
      () =>
          FwStandardModelsGetResponseFwStandardGridsAppDocumentAppDocumentGetManyResponse
              .fromJsonFactory);

  return _projectProjectidDocumentsGet(
      projectid: projectid,
      documentTypeId: documentTypeId,
      description: description,
      dateStamp: dateStamp,
      pageNo: pageNo,
      pageSize: pageSize,
      sort: sort);
}