/* Wrapper generated by lp-gen-wrappers, do not edit*/
var linphone = linphone || {};
/**
* LinphoneGlobalState describes the global state of the LinphoneCore object. It is notified via the
* @readonly
* @enum {number}
**/
linphone.ConfiguringState = {
Successful : 0,
Failed : 1,
Skipped : 2
};
/**
* Get the name of a value of the ConfiguringState enum as a string.
* @function linphone#getConfiguringStateText
* @param { number } value - One of the values of the ConfiguringState enum.
**/
linphone.getConfiguringStateText = function(value) {
switch (value) {
case linphone.ConfiguringState.Successful:
return "Successful";
case linphone.ConfiguringState.Failed:
return "Failed";
case linphone.ConfiguringState.Skipped:
return "Skipped";
default:
return "?";
}
};