Class Attachment

添付ファイル

アドオンによって作成された添付ファイルを表します。これは、さまざまな Google 拡張機能プロダクトのコンテキスト内で使用して、カレンダーの予定など、新しい添付ファイルを生成できます。

const attachment = CardService.newAttachment()
                       .setResourceUrl('https://fakeresourceurl.com')
                       .setTitle('Attachment title')
                       .setMimeType('text/html')
                       .setIconUrl('https://fakeresourceurl.com/iconurl.png');

メソッド

メソッド戻り値の型概要
setIconUrl(iconUrl)Attachment添付ファイルのアイコン URL を設定します。
setMimeType(mimeType)Attachment添付ファイルの MIME タイプを設定します。
setResourceUrl(resourceUrl)Attachment添付ファイルのリソース URL を設定します。
setTitle(title)Attachment添付ファイルのタイトルを設定します。

詳細なドキュメント

setIconUrl(iconUrl)

添付ファイルのアイコン URL を設定します。

パラメータ

名前説明
iconUrlString添付アイコンの URL アドレス。

戻る

Attachment - チェーン用のこのオブジェクト。


setMimeType(mimeType)

添付ファイルの MIME タイプを設定します。

パラメータ

名前説明
mimeTypeString添付リソース内のコンテンツの MIME タイプ。

戻る

Attachment - チェーン用のこのオブジェクト。


setResourceUrl(resourceUrl)

添付ファイルのリソース URL を設定します。

パラメータ

名前説明
resourceUrlStringリソースの URL アドレス。

戻る

Attachment - チェーン用のこのオブジェクト。


setTitle(title)

添付ファイルのタイトルを設定します。

パラメータ

名前説明
titleString添付ファイルのタイトル。

戻る

Attachment - チェーン用のこのオブジェクト。