Smartsheet.Api.Models.RowWrapper.MoveRowBuilder.SetParentId C# (CSharp) Method

SetParentId() public method

Sets the parent Id that puts the row as the first child of the specified Id.
public SetParentId ( long parentId ) : MoveRowBuilder
parentId long the parent Id
return MoveRowBuilder
            public virtual MoveRowBuilder SetParentId(long? parentId)
            {
                this.parentId = parentId;
                return this;
            }