Код: Выделить всё
@PUT("/share/{shareID}")
fun updateShare(@Header("auth") auth: String,
@Path("shareID") shareID: String?,
@Body body: UpdateShare): Call
Код: Выделить всё
class UpdateShare {
@SerializedName("expireAt")
var expireAt: Long? = 0
}
Подробнее здесь: https://stackoverflow.com/questions/647 ... retrifit-2
Мобильная версия