Common module¶
Common classes/utils included in SDK public API.
Caching¶
Cache
¶
Bases: ABC
Interface for cache instances used across SDK. Can be used to create custom cache implementations.
Source code in hiero_did_sdk_python/utils/cache.py
flush()
¶
get(key)
¶
Get cached data by key
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key
|
K
|
Cached data key |
required |
Returns:
Name | Type | Description |
---|---|---|
object |
V | None
|
Cached data |
remove(key)
¶
Remove cached data by key.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key
|
K
|
Cached data key |
required |
set(key, value, ttl=None)
¶
Set cached data with key
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key
|
K
|
Data key |
required |
value
|
V
|
Data to cache |
required |
ttl
|
seconds | None
|
Data retention duration in seconds. |
None
|
Source code in hiero_did_sdk_python/utils/cache.py
MemoryCache
¶
Bases: Cache[K, V]
In-memory cache implementation. Includes built-in data retention logic.
Source code in hiero_did_sdk_python/utils/cache.py
TimestampedRecord
dataclass
¶
Helper model for timestamped records.
Attributes:
Name | Type | Description |
---|---|---|
data |
T
|
Record data (generic) |
timestamp |
float
|
Timestamp of record creation |
Source code in hiero_did_sdk_python/utils/cache.py
Helper classes and utils¶
Serializable
¶
Source code in hiero_did_sdk_python/utils/serializable.py
from_json(json_str)
classmethod
¶
Parse a JSON string into an object instance.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
json_str
|
str
|
JSON string |
required |
Returns:
Type | Description |
---|---|
Self
|
An instance representation of this JSON |
Source code in hiero_did_sdk_python/utils/serializable.py
from_json_payload(payload)
abstractmethod
classmethod
¶
Create object instance from parsed JSON payload.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
payload
|
dict
|
parsed JSON dictionary |
required |
Returns:
Type | Description |
---|---|
Self
|
Object instance |
get_json_payload()
abstractmethod
¶
to_json()
¶
Create JSON string of object payload.
Returns:
Type | Description |
---|---|
str
|
A JSON representation of this message |