MCPcopy Index your code
hub / github.com/couchbase/couchbase-python-client / value

Method value

couchbase/result.py:64–71  ·  view source on GitHub ↗

Optional[Any]: The content of the document, if it exists.

(self)

Source from the content-addressed store, hash-verified

62
63 @property
64 def value(self) -> Optional[Any]:
65 """
66 Optional[Any]: The content of the document, if it exists.
67 """
68 if self._decoded_value is not None:
69 return self._decoded_value
70 self._decode_value()
71 return self._decoded_value
72
73 @property
74 def cas(self) -> Optional[int]:

Calls 1

_decode_valueMethod · 0.95

Tested by

no test coverage detected