Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 918 Bytes

File metadata and controls

30 lines (21 loc) · 918 Bytes

WorkspaceFile

A Workspace File resource

Properties

Name Type Description Notes
file_name str The Workspace File name

Example

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)

[Back to Model list] [Back to API list] [Back to README]