earthengine-api/python/ee/encodable.py
Max Shawabkeh 2403df3657 v0.1.51.
2015-04-22 16:36:30 -07:00

24 lines
618 B
Python

#!/usr/bin/env python
"""An interface implemented by serializable objects."""
# Using lowercase function naming to match the JavaScript names.
# pylint: disable-msg=g-bad-name
class Encodable(object):
"""An interface implemented by objects that can serialize themselves."""
def encode(self, encoder):
"""Encodes the object in a format compatible with Serializer.
Args:
encoder: A function that can be called to encode the components of
an object.
Returns:
The encoded form of the object.
"""
raise NotImplementedError('Encodable classes must implement encode().')