1.1 KiB
1.1 KiB
BankProfileResponse
Response model for bank profile.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| bank_id | str | ||
| name | str | ||
| disposition | DispositionTraits | ||
| background | str |
Example
from hindsight_client_api.models.bank_profile_response import BankProfileResponse
# TODO update the JSON string below
json = "{}"
# create an instance of BankProfileResponse from a JSON string
bank_profile_response_instance = BankProfileResponse.from_json(json)
# print the JSON string representation of the object
print(BankProfileResponse.to_json())
# convert the object into a dict
bank_profile_response_dict = bank_profile_response_instance.to_dict()
# create an instance of BankProfileResponse from a dict
bank_profile_response_from_dict = BankProfileResponse.from_dict(bank_profile_response_dict)