Version.delete
Version.delete() → Version | void
Returns:
Examples
dataset = redivis.organization("my_organization").dataset("some_dataset")
# Only valid if version 1.0 isn't the current version
first_version = dataset.version("1.0")
first_version.delete() # first_version.properties["isDeleted"] == True
# Only valid if the dataset has an unreleased "next" version
next_version = dataset.version("next")
next_version.delete() # next_version.exists() == FalseWas this helpful?

