mirror of
https://github.com/kubevela/kubevela.git
synced 2026-03-05 11:11:28 +00:00
41 lines
731 B
CUE
41 lines
731 B
CUE
#DingMessage: {
|
|
text?: *null | {
|
|
content: string
|
|
}
|
|
msgtype: string
|
|
link?: *null | {
|
|
text?: string
|
|
title?: string
|
|
messageUrl?: string
|
|
picUrl?: string
|
|
}
|
|
markdown?: *null | {
|
|
text: string
|
|
title: string
|
|
}
|
|
at?: *null | {
|
|
atMobiles?: *null | [...string]
|
|
isAtAll?: bool
|
|
}
|
|
actionCard?: *null | {
|
|
text: string
|
|
title: string
|
|
hideAvatar: string
|
|
btnOrientation: string
|
|
singleTitle: string
|
|
singleURL: string
|
|
btns: *null | [...*null | {
|
|
title: string
|
|
actionURL: string
|
|
}]
|
|
}
|
|
feedCard?: *null | {
|
|
links: *null | [...*null | {
|
|
text?: string
|
|
title?: string
|
|
messageUrl?: string
|
|
picUrl?: string
|
|
}]
|
|
}
|
|
}
|