A builder for EditorFileScopeActionResponse
objects.
Methods
Method | Return type | Brief description |
---|---|---|
build() | EditorFileScopeActionResponse | Builds the current Editor action response. |
requestFileScopeForActiveDocument() | EditorFileScopeActionResponseBuilder | Requests the drive.file scope for the current active Editor document. |
Detailed documentation
build()
Builds the current Editor action response.
Return
EditorFileScopeActionResponse
— A validated EditorFileScopeActionResponse
.
requestFileScopeForActiveDocument()
Requests the drive.file
scope for the current active Editor document.
// 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();
Note: To call this method, you must add the drive.file
scope to the add-on's
manifest.
Return
EditorFileScopeActionResponseBuilder
— This object, for chaining.