我正在四处寻找card
width
由 Google Chatbot 创建的更改,但据我所知,Chatbot API 中没有任何配置。
是否可以以某种方式设置属性?
我现在的Card
class
;
class Card {
constructor(title, subtitle, imgUrl) {
this.sections = [];
this.cardObject = {
"cards": [
{
"header": {"title": title, "subtitle": subtitle, "imageUrl": imgUrl},
"sections": this.sections
}
]
};
}
}
这些是我现在寻找的Hangouts Chat APIwidth
,但没有关于自定义值的信息;