| Name | Type | Description | Notes |
|---|---|---|---|
| status | APIStatus | ||
| comment | APIComment | ||
| user | UserSessionInfo | ||
| module_data | Dict[str, object] | Construct a type with a set of properties K of type T | [optional] |
from client.models.api_save_comment_response import APISaveCommentResponse
# TODO update the JSON string below
json = "{}"
# create an instance of APISaveCommentResponse from a JSON string
api_save_comment_response_instance = APISaveCommentResponse.from_json(json)
# print the JSON string representation of the object
print(APISaveCommentResponse.to_json())
# convert the object into a dict
api_save_comment_response_dict = api_save_comment_response_instance.to_dict()
# create an instance of APISaveCommentResponse from a dict
api_save_comment_response_from_dict = APISaveCommentResponse.from_dict(api_save_comment_response_dict)