Smartsheet.Api.Models.Workspace.UpdateWorkspaceBuilder.UpdateWorkspaceBuilder C# (CSharp) Method

UpdateWorkspaceBuilder() public method

Build workspace with required parameter name.
public UpdateWorkspaceBuilder ( long id, string name ) : System
id long the id of the workspace
name string the name of the workspace
return System
            public UpdateWorkspaceBuilder(long? id, string name)
            {
                this.id = id;
                this.workspaceName = name;
            }
Workspace.UpdateWorkspaceBuilder