Advertisement
Guest User

Untitled

a guest
Jan 18th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. public interface InterfacePendaftaran {
  2. @POST("/v1/registrants")
  3. Call<Void> createPendaftar(@Header("jwt")String jwt , ModelPendaftaran pendaftaran);
  4.  
  5. @GET("/v1/registrants")
  6. Call<List<ModelPendaftaran>> getPendaftar(@Header("jwt") String jwt, @Query("acara_id") UUID acaraId);
  7.  
  8. @DELETE("/v1/registrants")
  9. Call<Void> deletePendaftar(@Header("jwt") String jwt , @Query("id") UUID pendaftarId);
  10.  
  11. @GET("/v1/registrants/report")
  12. Call<List<ModelRekap>> getRekap(@Header("jwt")String jwt, @Query("acara_id")UUID acaraId);
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement