Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.1 KB

PublishResult.md

File metadata and controls

33 lines (24 loc) · 1.1 KB

PublishResult

Response object of the publish policy operation

Properties

Name Type Description Notes
status PolicyStatus
rules List[PolicyRule]
check_result PolicyCheckResult
metadata PolicyMetadata

Example

from fireblocks.models.publish_result import PublishResult

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

# convert the object into a dict
publish_result_dict = publish_result_instance.to_dict()
# create an instance of PublishResult from a dict
publish_result_from_dict = PublishResult.from_dict(publish_result_dict)

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