Class EditorFileScopeActionResponseBuilder

EditorFileScopeActionResponseBuilder

EditorFileScopeActionResponse 对象的构建器。

方法

方法返回类型简介
build()EditorFileScopeActionResponse构建当前编辑器操作响应。
requestFileScopeForActiveDocument()EditorFileScopeActionResponseBuilder请求当前处于活动状态的编辑器文档的 drive.file 作用域。

详细文档

build()

构建当前编辑器操作响应。

返回

EditorFileScopeActionResponse - 已验证的 EditorFileScopeActionResponse


requestFileScopeForActiveDocument()

请求当前处于活动状态的编辑器文档的 drive.file 作用域。

// Display a permissions dialog to the user, requesting `drive.file` scope for
// the current document on behalf of this add-on.
CardService.newEditorFileScopeActionResponseBuilder()
    .requestFileScopeForActiveDocument()
    .build();

注意:如需调用此方法,您必须将 drive.file 作用域添加到插件清单中。

返回

EditorFileScopeActionResponseBuilder - 此对象,用于链式调用。