[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-07 UTC."],[[["\u003cp\u003eThe \u003ccode\u003eApiProxy.Environment\u003c/code\u003e interface provides methods for retrieving various environmental details, including the application ID, authorization domain, and email.\u003c/p\u003e\n"],["\u003cp\u003eIt offers methods to obtain the module ID, version ID, and the remaining time in milliseconds, indicated by \u003ccode\u003egetModuleId()\u003c/code\u003e, \u003ccode\u003egetVersionId()\u003c/code\u003e, and \u003ccode\u003egetRemainingMillis()\u003c/code\u003e respectively.\u003c/p\u003e\n"],["\u003cp\u003eThe interface allows checking for admin privileges and login status using the \u003ccode\u003eisAdmin()\u003c/code\u003e and \u003ccode\u003eisLoggedIn()\u003c/code\u003e methods, which both return boolean values.\u003c/p\u003e\n"],["\u003cp\u003eIt also enables access to request-specific data via \u003ccode\u003egetRequestNamespace()\u003c/code\u003e which returns a String, and custom attributes through \u003ccode\u003egetAttributes()\u003c/code\u003e, which returns a Map of Strings to Objects.\u003c/p\u003e\n"]]],[],null,["# Interface ApiProxy.Environment (2.0.0)\n\n public static interface ApiProxy.Environment\n\nMethods\n-------\n\n### getAppId()\n\n public abstract String getAppId()\n\n### getAttributes()\n\n public abstract Map\u003cString,Object\u003e getAttributes()\n\n### getAuthDomain()\n\n public abstract String getAuthDomain()\n\n### getEmail()\n\n public abstract String getEmail()\n\n### getModuleId()\n\n public abstract String getModuleId()\n\n### getRemainingMillis()\n\n public abstract long getRemainingMillis()\n\n### getRequestNamespace()\n\n public abstract String getRequestNamespace()\n\n### getVersionId()\n\n public abstract String getVersionId()\n\n### isAdmin()\n\n public abstract boolean isAdmin()\n\n### isLoggedIn()\n\n public abstract boolean isLoggedIn()"]]