FunctionCommentCreateRequest
| Name |
Type |
Description |
Notes |
| content |
str |
Comment text content |
|
| context |
DecompilationCommentContext |
Comment context for a function decompilation |
[optional] |
from revengai.models.function_comment_create_request import FunctionCommentCreateRequest
# TODO update the JSON string below
json = "{}"
# create an instance of FunctionCommentCreateRequest from a JSON string
function_comment_create_request_instance = FunctionCommentCreateRequest.from_json(json)
# print the JSON string representation of the object
print(FunctionCommentCreateRequest.to_json())
# convert the object into a dict
function_comment_create_request_dict = function_comment_create_request_instance.to_dict()
# create an instance of FunctionCommentCreateRequest from a dict
function_comment_create_request_from_dict = FunctionCommentCreateRequest.from_dict(function_comment_create_request_dict)
[Back to Model list] [Back to API list] [Back to README]