Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.2 KB

File metadata and controls

32 lines (23 loc) · 1.2 KB

APISaveCommentResponse

Properties

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]

Example

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)

[Back to Model list] [Back to API list] [Back to README]