Я искал, чтобы изменить 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
}
]
};
}
}
и это API чата Hangouts s Я искал сейчас, но нет информации о настройке значения width
;