Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.16 KB

File metadata and controls

31 lines (22 loc) · 1.16 KB

MPesaStkPushRequest

Properties

Name Type Description Notes
order MPesaStkPushRequestOrder
customer MPesaStkPushRequestCustomer
payment MPesaStkPushRequestPayment

Example

from jenga_client.models.m_pesa_stk_push_request import MPesaStkPushRequest

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

# convert the object into a dict
m_pesa_stk_push_request_dict = m_pesa_stk_push_request_instance.to_dict()
# create an instance of MPesaStkPushRequest from a dict
m_pesa_stk_push_request_from_dict = MPesaStkPushRequest.from_dict(m_pesa_stk_push_request_dict)

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