| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | ||
| created_at | datetime | ||
| updated_at | datetime | ||
| routing_id | str | ||
| xml_output | str | ||
| has_error | bool | ||
| destination_property_id | str |
from wallet.models.response import Response
# TODO update the JSON string below
json = "{}"
# create an instance of Response from a JSON string
response_instance = Response.from_json(json)
# print the JSON string representation of the object
print Response.to_json()
# convert the object into a dict
response_dict = response_instance.to_dict()
# create an instance of Response from a dict
response_form_dict = response.from_dict(response_dict)