create order

This commit is contained in:
cimenmus
2017-10-22 00:28:45 +03:00
parent 1283fbb631
commit 5157398536
21 changed files with 373 additions and 118 deletions

View File

@@ -91,4 +91,8 @@ public interface ApiInterface {
@GET(ApiEndPoints.API_GET_PAYMENT_METHODS)
Call<ResponseObject<PaymentMethodsResponseModel>> getPaymentMethods(@Query("token") String token);
@FormUrlEncoded
@POST
Call<ResponseObject<Integer>> createOrder(@Url String url, @FieldMap HashMap<String, Object> body);
}