Version
class Version
Constructors
Examples
my_org <- redivis$organization("some_organization")
dataset <- my_org$dataset("some_dataset")
current_version = dataset$version("1.0")
current_version$exists() # TRUE
# Get the full API representation of the version and print its properties
print(current_version$get()$properties)
for (version in dataset$list_versions()){
print(version$properties)
}my_org <- redivis$organization("some_organization")
dataset <- my_org$dataset("some_dataset")
current_version <- dataset$version("current")
# can also call version$next_version() to go the other direction
previous_version <- current_version$previous_version()
if (!is.null(previous_version)){
print(previous_version[["tag"]])
}Attributes
Methods
Was this helpful?

