A Workspace File resource
| Name | Type | Description | Notes |
|---|---|---|---|
| file_name | str | The Workspace File name |
from cosmotech_api.models.workspace_file import WorkspaceFile
# TODO update the JSON string below
json = "{}"
# create an instance of WorkspaceFile from a JSON string
workspace_file_instance = WorkspaceFile.from_json(json)
# print the JSON string representation of the object
print(WorkspaceFile.to_json())
# convert the object into a dict
workspace_file_dict = workspace_file_instance.to_dict()
# create an instance of WorkspaceFile from a dict
workspace_file_from_dict = WorkspaceFile.from_dict(workspace_file_dict)