All Downloads are FREE. Search and download functionalities are using the official Maven repository.

kz.btsd.messenger.bot.api.model.command.ChangeGroupTitle.kt Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
package kz.btsd.messenger.bot.api.model.command

import io.swagger.annotations.ApiModel
import io.swagger.annotations.ApiModelProperty
import kz.btsd.messenger.bot.api.validation.UUID

@ApiModel(description = "Change group title", parent = Command::class)
data class ChangeGroupTitle(
    @ApiModelProperty(
        notes = "GroupId",
        required = true
    )
    @get:UUID(attributeName = "groupId")
    val groupId: String,
    @ApiModelProperty(
        notes = "New title",
        required = true
    )
    val title: String
) : Command("ChangeGroupTitle")




© 2015 - 2024 Weber Informatics LLC | Privacy Policy