2

我正在四处寻找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 ,但没有关于自定义值的信息;

4

1 回答 1

1

不幸的是,根据广泛的卡片概述,无法更改卡片的宽度。

于 2019-07-16T19:19:06.627 回答