Bingo.prototype.insert = function()

in bingo.js [128:135]


Bingo.prototype.insert = function(indigoObject, index) {
    this.indigo._setSessionId();
    if (index === undefined)
        return Bingo._checkResult(this.indigo, this._lib.bingoInsertRecordObj(this.id, indigoObject.id));
    else
        return Bingo._checkResult(this.indigo, this._lib.bingoInsertRecordObjWithId(this.id, indigoObject.id, index));

};