Camunda Connector InputParameters Declare Integer Variable

Like below:

I just add ‘request-config’ params as http config, but Camunda Connector apply request-config params as any type(not only ‘string’).

e.g. request-config#connection-request-timeout used int type:

CONNECTION_REQUEST_TIMEOUT("connection-request-timeout", (builder, value) -> {
        builder.setConnectionRequestTimeout((Integer)value);
    }),

If set connection-timeout value is ‘1000’, then Camunda will parse it as string type, or like ‘${1000}’ will parse as long type.

Is there has any method declare int variable or other?