Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 891 Bytes

File metadata and controls

28 lines (19 loc) · 891 Bytes

OutboundSMSStatus

Properties

Name Type Description Notes

Example

from wallet.models.outbound_sms_status import OutboundSMSStatus

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

# convert the object into a dict
outbound_sms_status_dict = outbound_sms_status_instance.to_dict()
# create an instance of OutboundSMSStatus from a dict
outbound_sms_status_form_dict = outbound_sms_status.from_dict(outbound_sms_status_dict)

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