CheckOutMultiple
Checks out one or more objects.
Syntax
// Assumes shellUI has been initialized with IShellUI instance
const results = await shellUI.Vault.ObjectOperations.CheckOutMultiple({
obj_ids: [] /* Array of ObjID */,
});
Message
| Name | Description | Type |
|---|---|---|
obj_ids | The objects to check out, as an ObjIDArray object. | ObjID[] |
Return type
| Name | Description | Type |
|---|---|---|
checked_out_versions | Results as JSON array. | ObjectVersionExWP[] |
previous_versions | Results as JSON array. | ObjectVersionEx[] |
Example
{
"checked_out_versions": [] /* Array of ObjectVersionExWP */,
"previous_versions": [] /* Array of ObjectVersionEx */
}