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

SetMembers() public method

Sets the members of the Group.
public SetMembers ( IList members ) : CreateGroupBuilder
members IList the members of the group
return CreateGroupBuilder
            public CreateGroupBuilder SetMembers(IList<GroupMember> members)
            {
                this.members = members;
                return this;
            }