Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.34 KB

File metadata and controls

32 lines (23 loc) · 1.34 KB

DatasetLockCreate

Properties

Name Type Description Notes
name str Human-readable name for the dataset.
shared_folder_id str ID of the existing SharedFolder to lock and register as a dataset.
subpath str Optional subpath within the folder where the dataset bytes live (e.g. ``data.jsonl`` or ``subdir/``). Defaults to the folder root. [optional]
metadata Dict[str, object] Optional metadata blob (schema_type, row_count, etc.). [optional]

Example

from saturn_api.models.dataset_lock_create import DatasetLockCreate

# TODO update the JSON string below
json = "{}"
# create an instance of DatasetLockCreate from a JSON string
dataset_lock_create_instance = DatasetLockCreate.from_json(json)
# print the JSON string representation of the object
print(DatasetLockCreate.to_json())

# convert the object into a dict
dataset_lock_create_dict = dataset_lock_create_instance.to_dict()
# create an instance of DatasetLockCreate from a dict
dataset_lock_create_from_dict = DatasetLockCreate.from_dict(dataset_lock_create_dict)

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