Smartsheet.Api.Models.Group.CreateGroupBuilder.CreateGroupBuilder C# (CSharp) Method

CreateGroupBuilder() public method

Sets the required attributes for creating a Group.
public CreateGroupBuilder ( string name, string description ) : System
name string name of group, must be unique within the organization
description string description of group
return System
            public CreateGroupBuilder(string name, string description)
            {
                this.name = name;
                this.description = description;
            }