| Name | Type | Description | Notes |
|---|---|---|---|
| content | bytearray | The content of the file | [optional] |
| id | str | The unique identifier for the file | [optional] [readonly] |
| is_public | bool | Indicates if the resource is accessible by all users. | [optional] |
| md5 | str | The md5 value of the file | [optional] |
| metadata | FileMetadata | [optional] | |
| name | str | The name of the file | [optional] |
| options | Dict[str, AttackMetadataKeywordsInner] | The characteristics of the file | [optional] |
| owner | str | The user-visible name of the file's owner | [optional] [readonly] |
| owner_id | str | The unique identifier of the file's owner | [optional] [readonly] |
| reference_links | Dict[str, int] | [optional] | |
| size | int | The size of the file | [optional] |
| type | str | The type of file | [optional] [readonly] |
from cyperf.models.generic_file import GenericFile
# TODO update the JSON string below
json = "{}"
# create an instance of GenericFile from a JSON string
generic_file_instance = GenericFile.from_json(json)
# print the JSON string representation of the object
print(GenericFile.to_json())
# convert the object into a dict
generic_file_dict = generic_file_instance.to_dict()
# create an instance of GenericFile from a dict
generic_file_from_dict = GenericFile.from_dict(generic_file_dict)