2026-04-09 10:01:23 +08:00
|
|
|
package response
|
|
|
|
|
|
|
|
|
|
type WidgetConfigResponse struct {
|
2026-04-24 22:27:30 +08:00
|
|
|
ChannelID string `json:"channelId"`
|
|
|
|
|
Title string `json:"title"`
|
|
|
|
|
Subtitle string `json:"subtitle"`
|
|
|
|
|
ThemeColor string `json:"themeColor"`
|
|
|
|
|
Position string `json:"position"`
|
|
|
|
|
Width string `json:"width"`
|
2026-04-09 10:01:23 +08:00
|
|
|
}
|