Response object of the publish policy operation
| Name | Type | Description | Notes |
|---|---|---|---|
| status | LegacyPolicyStatus | ||
| rules | List[LegacyPolicyRule] | ||
| check_result | LegacyPolicyCheckResult | ||
| metadata | LegacyPolicyMetadata |
from fireblocks.models.legacy_publish_result import LegacyPublishResult
# TODO update the JSON string below
json = "{}"
# create an instance of LegacyPublishResult from a JSON string
legacy_publish_result_instance = LegacyPublishResult.from_json(json)
# print the JSON string representation of the object
print(LegacyPublishResult.to_json())
# convert the object into a dict
legacy_publish_result_dict = legacy_publish_result_instance.to_dict()
# create an instance of LegacyPublishResult from a dict
legacy_publish_result_from_dict = LegacyPublishResult.from_dict(legacy_publish_result_dict)