get_parent_classes_by_class_full_name
Retrieve parent class details, including full name, name, and ID, by providing the fully qualified name of a class in code review and security analysis workflows.
Instructions
Get the parent classes of a class
@param class_full_name: The fully qualified name of the class
@return: The parent classes info of the class, including the full name, name and id
Input Schema
Name | Required | Description | Default |
---|---|---|---|
class_full_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"class_full_name": {
"title": "Class Full Name",
"type": "string"
}
},
"required": [
"class_full_name"
],
"title": "get_parent_classes_by_class_full_nameArguments",
"type": "object"
}