We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27584f3 commit 95572e3Copy full SHA for 95572e3
sdk/cosmos/azure-cosmos/azure/cosmos/_feed_range.py
@@ -29,14 +29,18 @@
29
30
31
class FeedRange(ABC):
32
- """Represents a single feed range in an Azure Cosmos DB SQL API container. """
+ """Represents a single feed range in an Azure Cosmos DB SQL API container.
33
+
34
+ """
35
36
def to_string(self) -> str:
- """Get a json representation of the feed range.
- The returned json string can be used to create a new feed range from it.
37
38
+ Get a json representation of the feed range.
39
+ The returned json string can be used to create a new feed range from it.
40
:return: A json representation of the feed range.
41
:rtype: str
42
"""
43
44
return self._to_base64_encoded_string()
45
46
@staticmethod
0 commit comments