get orders fix

This commit is contained in:
2017-10-05 21:22:21 +03:00
parent 389461f1a2
commit 8edec08d3e
5 changed files with 9 additions and 6 deletions

View File

@@ -48,8 +48,8 @@ public interface ApiInterface {
@POST(ApiEndPoints.API_LOGOUT)
Call<BaseResponseModel> logout(@Field("token") String customerToken);
@POST(ApiEndPoints.API_GET_ORDER_HISTORY)
Call<OrderHistoryResponseModel> getOrderHistory(@Body HashMap<String, Object> body);
@GET(ApiEndPoints.API_GET_ORDER_HISTORY)
Call<OrderHistoryResponseModel> getOrderHistory(@Query("token") String token);
/*