fleet-memory/hindsight-clients/python/hindsight_client_api/docs/CreateBankRequest.md
Nicolò Boschi 06b956a553 new names
2025-12-04 21:34:05 +01:00

1.1 KiB

CreateBankRequest

Request model for creating/updating a bank.

Properties

Name Type Description Notes
name str [optional]
disposition DispositionTraits [optional]
background str [optional]

Example

from hindsight_client_api.models.create_bank_request import CreateBankRequest

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

# convert the object into a dict
create_bank_request_dict = create_bank_request_instance.to_dict()
# create an instance of CreateBankRequest from a dict
create_bank_request_from_dict = CreateBankRequest.from_dict(create_bank_request_dict)

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