You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes a parameter name that makes sense externally (to clients) doesn't make sense internally. For example, if we have a parameter called userId[], for it the better internal name would be userIds. For situations like this it'd be nice to have a parameter alias. For example:
@QlueParameter(mandatory = true, alias = "userId")
public Integer userIds[];
The text was updated successfully, but these errors were encountered:
Sometimes a parameter name that makes sense externally (to clients) doesn't make sense internally. For example, if we have a parameter called userId[], for it the better internal name would be userIds. For situations like this it'd be nice to have a parameter alias. For example:
The text was updated successfully, but these errors were encountered: