Request body to assign vault accounts to a legal entity
| Name | Type | Description | Notes |
|---|---|---|---|
| vault_account_ids | List[str] | List of vault account IDs to assign to the legal entity |
from fireblocks.models.assign_vaults_to_legal_entity_request import AssignVaultsToLegalEntityRequest
# TODO update the JSON string below
json = "{}"
# create an instance of AssignVaultsToLegalEntityRequest from a JSON string
assign_vaults_to_legal_entity_request_instance = AssignVaultsToLegalEntityRequest.from_json(json)
# print the JSON string representation of the object
print(AssignVaultsToLegalEntityRequest.to_json())
# convert the object into a dict
assign_vaults_to_legal_entity_request_dict = assign_vaults_to_legal_entity_request_instance.to_dict()
# create an instance of AssignVaultsToLegalEntityRequest from a dict
assign_vaults_to_legal_entity_request_from_dict = AssignVaultsToLegalEntityRequest.from_dict(assign_vaults_to_legal_entity_request_dict)