Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 904 Bytes

File metadata and controls

28 lines (19 loc) · 904 Bytes

SSOutboundStatuses

Properties

Name Type Description Notes

Example

from wallet.models.ss_outbound_statuses import SSOutboundStatuses

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

# convert the object into a dict
ss_outbound_statuses_dict = ss_outbound_statuses_instance.to_dict()
# create an instance of SSOutboundStatuses from a dict
ss_outbound_statuses_form_dict = ss_outbound_statuses.from_dict(ss_outbound_statuses_dict)

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