Interface CashierJournalsApi
public interface CashierJournalsApi
-
Method Summary
Modifier and TypeMethodDescriptionretrofit2.Call<List<TellerJournalData>> getJournalData1(Long officeId, Long tellerId, Long cashierId, String dateRange) retrofit2.Call<List<TellerJournalData>> getJournalData1(Long officeId, Long tellerId, Long cashierId, String dateRange, Map<String, String> headers)
-
Method Details
-
getJournalData1
@GET("v1/cashiersjournal") retrofit2.Call<List<TellerJournalData>> getJournalData1(@Query("officeId") Long officeId, @Query("tellerId") Long tellerId, @Query("cashierId") Long cashierId, @Query("dateRange") String dateRange) - Parameters:
officeId- (optional)tellerId- (optional)cashierId- (optional)dateRange- (optional)- Returns:
- Call<List<TellerJournalData>>
-
getJournalData1
@GET("v1/cashiersjournal") retrofit2.Call<List<TellerJournalData>> getJournalData1(@Query("officeId") Long officeId, @Query("tellerId") Long tellerId, @Query("cashierId") Long cashierId, @Query("dateRange") String dateRange, @HeaderMap Map<String, String> headers) - Parameters:
officeId- (optional)tellerId- (optional)cashierId- (optional)dateRange- (optional)- Returns:
- Call<List<TellerJournalData>>
-