com.tencent.devops.notify.pojo.messageTemplate.VoiceTemplate.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-notify Show documentation
Show all versions of api-notify Show documentation
Tencent blueking ci project
package com.tencent.devops.notify.pojo.messageTemplate
import io.swagger.v3.oas.annotations.media.Schema
@Schema(title = "语音模板信息")
data class VoiceTemplate(
@get:Schema(title = "模板ID", required = true)
val id: String,
@get:Schema(title = "任务名称", required = false)
var taskName: String,
@get:Schema(title = "内容", required = true)
var content: String
)