Guest User

Untitled

a guest
Jan 20th, 2019
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. public interface RequestInterface {
  2.  
  3. @GET("add_your_endpoint")
  4. Call<String> getClientToken();
  5.  
  6. @POST("your_payments_endpoint")
  7. @Headers("Content-Type: application/json")
  8. Call<ResponseBody> getPayment(@Body JsonObject jsonObject);
  9.  
  10. }
Add Comment
Please, Sign In to add comment