Getting started Community Training Tutorials Documentation APIs, AI & Tools
import org.mule.sdk.api.annotation.DoNotEnforceMinMuleVersion;
import org.mule.sdk.api.annotation.param.Parameter;
public class MyOperations {
public void myOperation(@DoNotEnforceMinMuleVersion @Parameter SomeNewType input) {
// This parameter type requires Mule 4.12.0, but we have fallback logic
// so we don't want it to raise the operation's Minimum Mule Version
}
}



