Represents an absolute file path.
| Name | Type | Description | Notes |
|---|---|---|---|
| path | str | The absolute path to a file on the system. Note that any existing file will be overwritten. | [optional] |
from flightctl.models.absolute_path import AbsolutePath
# TODO update the JSON string below
json = "{}"
# create an instance of AbsolutePath from a JSON string
absolute_path_instance = AbsolutePath.from_json(json)
# print the JSON string representation of the object
print(AbsolutePath.to_json())
# convert the object into a dict
absolute_path_dict = absolute_path_instance.to_dict()
# create an instance of AbsolutePath from a dict
absolute_path_from_dict = AbsolutePath.from_dict(absolute_path_dict)