Package ch.aaap.harvestclient.service
Interface ProjectAssignmentService
public interface ProjectAssignmentService
- 
Method Summary
Modifier and TypeMethodDescriptionretrofit2.Call<PaginatedList>list(int page, int perPage) retrofit2.Call<PaginatedList> 
- 
Method Details
- 
list
@GET("users/{userId}/project_assignments") retrofit2.Call<PaginatedList> list(@Path("userId") long userId, @Query("updated_since") Instant updatedSince, @Query("page") int page, @Query("per_page") int perPage)  - 
list
@GET("users/me/project_assignments") retrofit2.Call<PaginatedList> list(@Query("page") int page, @Query("per_page") int perPage)  
 -