Retrieve the keys of a dictionary as a list.
(self)
| 210 | return apifunction.ApiFunction.call_(self.name() + '.getString', self, key) |
| 211 | |
| 212 | def keys(self) -> ee_list.List: |
| 213 | """Retrieve the keys of a dictionary as a list.""" |
| 214 | |
| 215 | return apifunction.ApiFunction.call_(self.name() + '.keys', self) |
| 216 | |
| 217 | # pylint: disable-next=invalid-name |
| 218 | def map(self, baseAlgorithm: _arg_types.Any) -> Dictionary: |