Метод | Описание | |
---|---|---|
CopyWorkspace ( long workspaceId, |
Creates a copy of the specified Workspace. It mirrors To the following Smartsheet REST API method:
|
|
CreateWorkspace ( Api.Models.Workspace workspace ) : Api.Models.Workspace |
Create a workspace. It mirrors To the following Smartsheet REST API method: POST /Workspaces
|
|
DeleteWorkspace ( long workspaceId ) : void |
Deletes the specified Workspace (and its contents). It mirrors To the following Smartsheet REST API method: DELETE /workspaces{workspaceId}
|
|
GetWorkspace ( long workspaceId, bool loadAll, IEnumerable |
Gets the specified Workspace (and lists its contents). It mirrors To the following Smartsheet REST API method: GET /workspaces/{workspaceid} By default, this operation only returns the top-level items in the Workspace. To load all of the contents, including nested Folders, include the loadAll query string parameter with a value of true. If no Folders, Sheets, Reports, or Templates are present in the Workspace, the corresponding attribute (e.g., "folders", "sheets") will not be present in the response object.
|
|
ListWorkspaces ( |
List all Workspaces. It mirrors To the following Smartsheet REST API method: GET /Workspaces
|
|
UpdateWorkspace ( Api.Models.Workspace workspace ) : Api.Models.Workspace |
Update a workspace. It mirrors To the following Smartsheet REST API method: PUT /workspaces/{workspaceId}
|
|
WorkspaceResourcesImpl ( |
Constructor. Exceptions: - IllegalArgumentException : if any argument is
|
public CopyWorkspace ( long workspaceId, |
||
workspaceId | long | the workspace Id |
destination | the destination to copy to | |
include | IEnumerable |
the elements to copy. Note: Cell history will not be copied, regardless of which include parameter values are specified. |
skipRemap | IEnumerable |
the references to NOT re-map for the newly created folder
/// |
Результат | Api.Models.Workspace |
public CreateWorkspace ( Api.Models.Workspace workspace ) : Api.Models.Workspace | ||
workspace | Api.Models.Workspace | the workspace To create |
Результат | Api.Models.Workspace |
public DeleteWorkspace ( long workspaceId ) : void | ||
workspaceId | long | the Id of the workspace |
Результат | void |
public GetWorkspace ( long workspaceId, bool loadAll, IEnumerable |
||
workspaceId | long | the workspace id |
loadAll | bool | Defaults to false. If true, loads all of the contents, including nested Folders. |
include | IEnumerable |
When specified with a value of "source", response will include the source for any sheet that was created from another sheet or template |
Результат | Api.Models.Workspace |
public ListWorkspaces ( |
||
paging | ||
Результат | PaginatedResult |
public UpdateWorkspace ( Api.Models.Workspace workspace ) : Api.Models.Workspace | ||
workspace | Api.Models.Workspace | the workspace To update |
Результат | Api.Models.Workspace |
public WorkspaceResourcesImpl ( |
||
smartsheet | the Smartsheet | |
Результат | System.Collections.Generic |