ThumbnailApi

interface ThumbnailApi

Functions

Link copied to clipboard
@GET(value = "/v1/users/avatar")
abstract fun getAvatar(    @Query(value = "userIds") userId: Long,     @Query(value = "size") size: String,     @Query(value = "format") format: String,     @Query(value = "isCircular") circular: Boolean): Call<ThumbnailListData>
Link copied to clipboard
@GET(value = "/v1/users/avatar-bust")
abstract fun getBust(    @Query(value = "userIds") userId: Long,     @Query(value = "size") size: String,     @Query(value = "format") format: String,     @Query(value = "isCircular") circular: Boolean): Call<ThumbnailListData>
Link copied to clipboard
@GET(value = "/v1/users/avatar-headshot")
abstract fun getHeadShot(    @Query(value = "userIds") userId: Long,     @Query(value = "size") size: String,     @Query(value = "format") format: String,     @Query(value = "isCircular") circular: Boolean): Call<ThumbnailListData>