Interface ProjectAssignmentService


public interface ProjectAssignmentService
  • Method Summary

    Modifier and Type
    Method
    Description
    retrofit2.Call<PaginatedList>
    list(int page, int perPage)
     
    retrofit2.Call<PaginatedList>
    list(long userId, Instant updatedSince, int page, int perPage)
     
  • 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)