Object.create {solvebio} | R Documentation |
Object.create
Description
Create a SolveBio object.
Usage
Object.create(
vault_id,
parent_object_id,
object_type,
filename,
env = solvebio:::.solveEnv,
...
)
Arguments
vault_id |
The target vault ID. |
parent_object_id |
The ID of the parent object (folder) or NULL for the vault root. |
object_type |
The type of object (i.e. "folder"). |
filename |
The filename (i.e. the name) of the object. |
env |
(optional) Custom client environment. |
... |
(optional) Additional object attributes. |
References
Examples
## Not run:
Object.create(
vault_id="1234567890",
parent_object_id=NULL,
object_type="folder",
filename="My Folder"
)
## End(Not run)
[Package solvebio version 2.14.0 Index]