Annotates a program element (class, method, package etc) which is internal to its containing
library, not part of the public API, and should not be used by users of the library.
This annotation only makes sense on APIs that are not private. Its existence is necessary
because Java does not have a visibility level for code within a compilation unit.
Adding this annotation to an API is considered API-breaking.
[[["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-04-09 UTC."],[[["The webpage provides documentation for the `InternalApi` interface, which is part of the `com.google.api.core` package and is used to denote elements that are internal to a library and not intended for external use."],["The `InternalApi` interface, which implements the `Annotation` interface, includes a single abstract method, `value()`, that returns a `String` providing context information about the internal nature of the element, such as \"internal to library\" or \"for testing\"."],["The page lists multiple versions of the `InternalApi` documentation, ranging from version 2.1.2 up to the latest version, 2.46.1, with each version having a corresponding link to its specific documentation."],["Adding the `InternalApi` annotation to an element is considered API-breaking, indicating that it is a significant change in the API's structure."],["The current main webpage version being referenced is 2.3.1."]]],[]]