Name |
Type |
Description |
Notes |
data |
List |
|
[optional] |
from listmonk.models.create_list200_response import CreateList200Response
# TODO update the JSON string below
json = "{}"
# create an instance of CreateList200Response from a JSON string
create_list200_response_instance = CreateList200Response.from_json(json)
# print the JSON string representation of the object
print
CreateList200Response.to_json()
# convert the object into a dict
create_list200_response_dict = create_list200_response_instance.to_dict()
# create an instance of CreateList200Response from a dict
create_list200_response_form_dict = create_list200_response.from_dict(create_list200_response_dict)
[Back to Model list] [Back to API list] [Back to README]