Smartsheet.Api.Models.Column.UpdateColumnBuilder.UpdateColumnBuilder C# (CSharp) Method

UpdateColumnBuilder() public method

Sets the required properties for updating a column.
public UpdateColumnBuilder ( long id, string title, int index ) : System
id long the id of the Column
title string the new Column title
index int the new Column index (zero-based)
return System
            public UpdateColumnBuilder(long id, string title, int index)
            {
                this.id = id;
                this.title = title;
                this.index = index;
            }