export default AppProtectionPolicyState; /** * * */ type AppProtectionPolicyState = string; declare namespace AppProtectionPolicyState { /** * Returns a AppProtectionPolicyState enum value from a JavaScript object name. * @param {Object} obj The plain JavaScript object containing the name of the enum value. * @return {AppProtectionPolicyState} The enum AppProtectionPolicyState value. */ function constructFromObject(obj: any): string; /** * Validates AppProtectionPolicyState enum value. * @param {Object} obj The plain JavaScript object containing the name of the enum value. * @return {null} Throws error for invalid value. */ function validate(obj: any): null; }