class matlantis_features.features.base.FeatureBaseOutput#

Bases: object

The base of the matlantis features result output classes.

Methods

__init__()

from_dict(res)

Construct a FeatureBaseOutput object from serialized dict.

to_dict()

Dictionary representation of the FeatureBaseOutput.

__init__() None#
classmethod from_dict(res: Dict[str, Any]) FeatureBaseOutput#

Construct a FeatureBaseOutput object from serialized dict.

Parameters

res (dict[str, Any]) – A dict containing a serialized FeatureBaseOutput from to_dict().

Returns

The deserialized object from provided dict.

Return type

FeatureBaseOutput

to_dict() Dict[str, Any]#

Dictionary representation of the FeatureBaseOutput.

Returns

A dict containing a serialized FeatureBaseOutput.

Return type

dict[str, Any]