Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.23 KB

File metadata and controls

30 lines (21 loc) · 1.23 KB

AssignVaultsToLegalEntityResponse

Response after assigning vault accounts to a legal entity

Properties

Name Type Description Notes
assigned_count int Number of vault accounts successfully assigned

Example

from fireblocks.models.assign_vaults_to_legal_entity_response import AssignVaultsToLegalEntityResponse

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

# convert the object into a dict
assign_vaults_to_legal_entity_response_dict = assign_vaults_to_legal_entity_response_instance.to_dict()
# create an instance of AssignVaultsToLegalEntityResponse from a dict
assign_vaults_to_legal_entity_response_from_dict = AssignVaultsToLegalEntityResponse.from_dict(assign_vaults_to_legal_entity_response_dict)

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