Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.23 KB

File metadata and controls

31 lines (22 loc) · 1.23 KB

IMTWithinEquityRequestSource

Properties

Name Type Description Notes
country_code str The country code of the source account
name str The name of the source account holder
account_number str The account number of the source account

Example

from jenga_client.models.imt_within_equity_request_source import IMTWithinEquityRequestSource

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

# convert the object into a dict
imt_within_equity_request_source_dict = imt_within_equity_request_source_instance.to_dict()
# create an instance of IMTWithinEquityRequestSource from a dict
imt_within_equity_request_source_from_dict = IMTWithinEquityRequestSource.from_dict(imt_within_equity_request_source_dict)

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