Interface CashiersApi
public interface CashiersApi
-
Method Summary
Modifier and TypeMethodDescriptionretrofit2.Call<List<CashierData>> getCashierData(Long officeId, Long tellerId, Long staffId, String date) retrofit2.Call<List<CashierData>>
-
Method Details
-
getCashierData
@GET("v1/cashiers") retrofit2.Call<List<CashierData>> getCashierData(@Query("officeId") Long officeId, @Query("tellerId") Long tellerId, @Query("staffId") Long staffId, @Query("date") String date) - Parameters:
officeId- (optional)tellerId- (optional)staffId- (optional)date- (optional)- Returns:
- Call<List<CashierData>>
-
getCashierData
@GET("v1/cashiers") retrofit2.Call<List<CashierData>> getCashierData(@Query("officeId") Long officeId, @Query("tellerId") Long tellerId, @Query("staffId") Long staffId, @Query("date") String date, @HeaderMap Map<String, String> headers) - Parameters:
officeId- (optional)tellerId- (optional)staffId- (optional)date- (optional)- Returns:
- Call<List<CashierData>>
-