Package com.hiddenlayer.api.lib
Annotation BetaApi
-
- All Implemented Interfaces:
@Target(allowedTargets = {AnnotationTarget.FUNCTION, AnnotationTarget.CLASS}) public @interface BetaApi
Marks an API as beta. Beta APIs are not GA or production ready and are subject to breaking changes at any time.
Kotlin consumers will see a compile-time warning when calling beta methods unless they explicitly opt in with
@OptIn(BetaApi::class).