(self, encoder: Any)
| 102 | return self._signature['name'] |
| 103 | |
| 104 | def encode_cloud_invocation(self, encoder: Any) -> dict[str, Any]: |
| 105 | del encoder # Unused. |
| 106 | return {'functionName': self._signature['name']} |
| 107 | |
| 108 | def getSignature(self) -> dict[str, Any]: |
| 109 | """Returns a description of the interface provided by this function.""" |
no outgoing calls