IndigoObject.prototype.getSGroupParentId = function()

in indigo.js [1513:1520]


IndigoObject.prototype.getSGroupParentId = function(parent = null) {
    this.d._setSessionId();
    parent = parent || 0;
    if (!parent)
        return this.d._checkResult(this.d._lib.indigoGetSGroupParentId(this.id));
    else
        return this.d._checkResult(this.d._lib.indigoGetSGroupParentId(this.id, parent));
};