DeleteCategoryDto

data class DeleteCategoryDto(id: Int, questionsToDelete: List<Long>, questionsToUpdate: List<PutQuestionDto>)

Functions

component1
Link copied to clipboard
operator fun component1(): Int
component2
Link copied to clipboard
operator fun component2(): List<Long>
component3
Link copied to clipboard
operator fun component3(): List<PutQuestionDto>
copy
Link copied to clipboard
fun copy(id: Int, questionsToDelete: List<Long>, questionsToUpdate: List<PutQuestionDto>): DeleteCategoryDto
equals
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
open override fun hashCode(): Int
toString
Link copied to clipboard
open override fun toString(): String
validate
Link copied to clipboard
fun validate(questionRepository: QuestionRepository)

Properties

id
Link copied to clipboard
val id: Int
questionsToDelete
Link copied to clipboard
val questionsToDelete: List<Long>
questionsToUpdate
Link copied to clipboard
val questionsToUpdate: List<PutQuestionDto>