Smartsheet.Api.Models.RowWrapper.InsertRowsBuilder.SetSiblingId C# (CSharp) Method

SetSiblingId() public method

Sets the sibling Id that puts the row as the next row at the same hierarchical level of this row.
public SetSiblingId ( long siblingId ) : InsertRowsBuilder
siblingId long the sibling Id
return InsertRowsBuilder
            public virtual InsertRowsBuilder SetSiblingId(long? siblingId)
            {
                this.siblingId = siblingId;
                return this;
            }