ArticleRequest

fun ArticleRequest(    id: Int? = null,     title: String? = null,     description: String? = null,     content: String? = null,     titleRu: String? = null,     descriptionRu: String? = null,     contentRu: String? = null,     category: ArticleCategory? = null,     type: ArticleType? = null,     url: String? = null,     listImage: String? = null,     viewImage: String? = null,     isPublished: Boolean? = null,     uploads: List<Int> = listOf())