Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.3 KB

File metadata and controls

32 lines (23 loc) · 1.3 KB

IMTWithinEquityRequest

Properties

Name Type Description Notes
source IMTWithinEquityRequestSource
sender IMTWithinEquityRequestSender
destination IMTWithinEquityRequestDestination
transfer IMTWithinEquityRequestTransfer

Example

from jenga_client.models.imt_within_equity_request import IMTWithinEquityRequest

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

# convert the object into a dict
imt_within_equity_request_dict = imt_within_equity_request_instance.to_dict()
# create an instance of IMTWithinEquityRequest from a dict
imt_within_equity_request_from_dict = IMTWithinEquityRequest.from_dict(imt_within_equity_request_dict)

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