Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.17 KB

File metadata and controls

33 lines (24 loc) · 1.17 KB

LegacyDraftResponse

Response object for draft operations

Properties

Name Type Description Notes
status str Operation status
rules List[LegacyPolicyRule] Draft rules
draft_id str Draft unique id
metadata LegacyPolicyMetadata

Example

from fireblocks.models.legacy_draft_response import LegacyDraftResponse

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

# convert the object into a dict
legacy_draft_response_dict = legacy_draft_response_instance.to_dict()
# create an instance of LegacyDraftResponse from a dict
legacy_draft_response_from_dict = LegacyDraftResponse.from_dict(legacy_draft_response_dict)

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