Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.29 KB

File metadata and controls

32 lines (23 loc) · 1.29 KB

MPesaCallbackResponse

Properties

Name Type Description Notes
callback_type str Type of callback [optional]
customer MPesaCallbackResponseCustomer [optional]
transaction MPesaCallbackResponseTransaction [optional]
bank MPesaCallbackResponseBank [optional]

Example

from jenga_client.models.m_pesa_callback_response import MPesaCallbackResponse

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

# convert the object into a dict
m_pesa_callback_response_dict = m_pesa_callback_response_instance.to_dict()
# create an instance of MPesaCallbackResponse from a dict
m_pesa_callback_response_from_dict = MPesaCallbackResponse.from_dict(m_pesa_callback_response_dict)

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