Package com.google.apps.script.type
Interface UniversalActionExtensionPointOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
UniversalActionExtensionPoint
,UniversalActionExtensionPoint.Builder
public interface UniversalActionExtensionPointOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UniversalActionExtensionPoint.ActionTypeCase
getActionTypeCase()
String
getLabel()
Required.com.google.protobuf.ByteString
getLabelBytes()
Required.String
getOpenLink()
URL to be opened by the UniversalAction.com.google.protobuf.ByteString
getOpenLinkBytes()
URL to be opened by the UniversalAction.String
getRunFunction()
Endpoint to be run by the UniversalAction.com.google.protobuf.ByteString
getRunFunctionBytes()
Endpoint to be run by the UniversalAction.boolean
hasOpenLink()
URL to be opened by the UniversalAction.boolean
hasRunFunction()
Endpoint to be run by the UniversalAction.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getLabel
String getLabel()
Required. User-visible text describing the action taken by activating this extension point, for example, "Add a new contact".
string label = 1;
- Returns:
- The label.
-
getLabelBytes
com.google.protobuf.ByteString getLabelBytes()
Required. User-visible text describing the action taken by activating this extension point, for example, "Add a new contact".
string label = 1;
- Returns:
- The bytes for label.
-
hasOpenLink
boolean hasOpenLink()
URL to be opened by the UniversalAction.
string open_link = 2;
- Returns:
- Whether the openLink field is set.
-
getOpenLink
String getOpenLink()
URL to be opened by the UniversalAction.
string open_link = 2;
- Returns:
- The openLink.
-
getOpenLinkBytes
com.google.protobuf.ByteString getOpenLinkBytes()
URL to be opened by the UniversalAction.
string open_link = 2;
- Returns:
- The bytes for openLink.
-
hasRunFunction
boolean hasRunFunction()
Endpoint to be run by the UniversalAction.
string run_function = 3;
- Returns:
- Whether the runFunction field is set.
-
getRunFunction
String getRunFunction()
Endpoint to be run by the UniversalAction.
string run_function = 3;
- Returns:
- The runFunction.
-
getRunFunctionBytes
com.google.protobuf.ByteString getRunFunctionBytes()
Endpoint to be run by the UniversalAction.
string run_function = 3;
- Returns:
- The bytes for runFunction.
-
getActionTypeCase
UniversalActionExtensionPoint.ActionTypeCase getActionTypeCase()
-
-