The content of a file.
| Name | Type | Description | Notes |
|---|---|---|---|
| content | str | The plain text (UTF-8) or base64-encoded content of the file. | [optional] |
| content_encoding | EncodingType | [optional] |
from flightctl.models.file_content import FileContent
# TODO update the JSON string below
json = "{}"
# create an instance of FileContent from a JSON string
file_content_instance = FileContent.from_json(json)
# print the JSON string representation of the object
print(FileContent.to_json())
# convert the object into a dict
file_content_dict = file_content_instance.to_dict()
# create an instance of FileContent from a dict
file_content_from_dict = FileContent.from_dict(file_content_dict)