| Name | Type | Description | Notes |
|---|---|---|---|
| apiversion | int | The version of the API. | [optional] |
| func | str | The name of the method called. | [optional] |
| module | str | The name of the module called. | [optional] |
| result | InlineResponse200201Result | [optional] |
from clientapi_cpanel.models.inline_response200201 import InlineResponse200201
# TODO update the JSON string below
json = "{}"
# create an instance of InlineResponse200201 from a JSON string
inline_response200201_instance = InlineResponse200201.from_json(json)
# print the JSON string representation of the object
print(InlineResponse200201.to_json())
# convert the object into a dict
inline_response200201_dict = inline_response200201_instance.to_dict()
# create an instance of InlineResponse200201 from a dict
inline_response200201_from_dict = InlineResponse200201.from_dict(inline_response200201_dict)