Data
Properties
Name |
Type |
Description |
Notes |
id |
str |
The id of the file/folder as it was uploaded. |
|
urn |
str |
The URN of this data. The format is urn:ilmn:ica:region:\<ID of the region\>:data:\<ID of the data\>#\<optional data path\>. The path can be omitted, in that case the hashtag (#) must also be omitted. |
[optional] |
details |
DataDetails |
|
[optional] |
folder_details |
FolderDetails |
|
[optional] |
Example
from libica.openapi.v3.models.data import Data
# TODO update the JSON string below
json = "{}"
# create an instance of Data from a JSON string
data_instance = Data.from_json(json)
# print the JSON string representation of the object
print(Data.to_json())
# convert the object into a dict
data_dict = data_instance.to_dict()
# create an instance of Data from a dict
data_from_dict = Data.from_dict(data_dict)
[Back to Model list] [Back to API list] [Back to README]