Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.25 KB

File metadata and controls

32 lines (23 loc) · 1.25 KB

MPesaTransactionStatus

Properties

Name Type Description Notes
status bool Indicates if the request was successful [optional]
code str Response code indicating status [optional]
message str Description of the response status [optional]
data MPesaTransactionStatusData [optional]

Example

from jenga_client.models.m_pesa_transaction_status import MPesaTransactionStatus

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

# convert the object into a dict
m_pesa_transaction_status_dict = m_pesa_transaction_status_instance.to_dict()
# create an instance of MPesaTransactionStatus from a dict
m_pesa_transaction_status_from_dict = MPesaTransactionStatus.from_dict(m_pesa_transaction_status_dict)

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