Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.08 KB

File metadata and controls

31 lines (22 loc) · 1.08 KB

DerivationPathConfig

Derivation path configuration

Properties

Name Type Description Notes
path List[float] Derivation path as array of numbers
partial bool Whether this is a partial path [optional]

Example

from fireblocks.models.derivation_path_config import DerivationPathConfig

# TODO update the JSON string below
json = "{}"
# create an instance of DerivationPathConfig from a JSON string
derivation_path_config_instance = DerivationPathConfig.from_json(json)
# print the JSON string representation of the object
print(DerivationPathConfig.to_json())

# convert the object into a dict
derivation_path_config_dict = derivation_path_config_instance.to_dict()
# create an instance of DerivationPathConfig from a dict
derivation_path_config_from_dict = DerivationPathConfig.from_dict(derivation_path_config_dict)

[Back to Model list] [Back to API list] [Back to README]