| Name | Type | Description | Notes |
|---|---|---|---|
| message | str | [optional] | |
| data | UpdateApplications200ResponseData | [optional] |
from gateway_api_sdk.models.update_applications200_response import UpdateApplications200Response
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateApplications200Response from a JSON string
update_applications200_response_instance = UpdateApplications200Response.from_json(json)
# print the JSON string representation of the object
print(UpdateApplications200Response.to_json())
# convert the object into a dict
update_applications200_response_dict = update_applications200_response_instance.to_dict()
# create an instance of UpdateApplications200Response from a dict
update_applications200_response_from_dict = UpdateApplications200Response.from_dict(update_applications200_response_dict)