Interface CollectionSheetApi
public interface CollectionSheetApi
-
Method Summary
Modifier and TypeMethodDescriptionretrofit2.Call<PostCollectionSheetResponse> generateCollectionSheet(CollectionSheetRequest collectionSheetRequest, String command) Generate Individual Collection Sheet | Save Collection Sheet Generate Individual Collection Sheet: This Api retrieves repayment details of all individual loans under a office as on a specified meeting date.retrofit2.Call<PostCollectionSheetResponse> generateCollectionSheet(CollectionSheetRequest collectionSheetRequest, String command, Map<String, String> headers) Generate Individual Collection Sheet | Save Collection Sheet Generate Individual Collection Sheet: This Api retrieves repayment details of all individual loans under a office as on a specified meeting date.
-
Method Details
-
generateCollectionSheet
@Headers("Content-Type:application/json") @POST("v1/collectionsheet") retrofit2.Call<PostCollectionSheetResponse> generateCollectionSheet(@Body CollectionSheetRequest collectionSheetRequest, @Query("command") String command) Generate Individual Collection Sheet | Save Collection Sheet Generate Individual Collection Sheet: This Api retrieves repayment details of all individual loans under a office as on a specified meeting date. Save Collection Sheet: This Api allows the loan officer to perform bulk repayments of individual loans and deposit of mandatory savings on a given meeting date.- Parameters:
collectionSheetRequest- (required)command- command (optional)- Returns:
- Call<PostCollectionSheetResponse>
-
generateCollectionSheet
@Headers("Content-Type:application/json") @POST("v1/collectionsheet") retrofit2.Call<PostCollectionSheetResponse> generateCollectionSheet(@Body CollectionSheetRequest collectionSheetRequest, @Query("command") String command, @HeaderMap Map<String, String> headers) Generate Individual Collection Sheet | Save Collection Sheet Generate Individual Collection Sheet: This Api retrieves repayment details of all individual loans under a office as on a specified meeting date. Save Collection Sheet: This Api allows the loan officer to perform bulk repayments of individual loans and deposit of mandatory savings on a given meeting date.- Parameters:
collectionSheetRequest- (required)command- command (optional)- Returns:
- Call<PostCollectionSheetResponse>
-