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

UpdateDraftRequest

Request schema for updating draft with policy types and rules

Properties

Name Type Description Notes
policy_types List[PolicyType]
rules List[PolicyRule] Array of policy rules

Example

from fireblocks.models.update_draft_request import UpdateDraftRequest

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

# convert the object into a dict
update_draft_request_dict = update_draft_request_instance.to_dict()
# create an instance of UpdateDraftRequest from a dict
update_draft_request_from_dict = UpdateDraftRequest.from_dict(update_draft_request_dict)

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