I was looking around to change card
width
created by Google Chatbot but as far I see there is no any config within Chatbot API.
Is it possible to set an attribute somehow?
My current Card
class
;
class Card {
constructor(title, subtitle, imgUrl) {
this.sections = [];
this.cardObject = {
"cards": [
{
"header": {"title": title, "subtitle": subtitle, "imageUrl": imgUrl},
"sections": this.sections
}
]
};
}
}
and those are Hangouts Chat APIs I've looked for now but no information about customise the width
value;