in bigquery-antipattern-recognition/src/main/java/com/google/zetasql/toolkit/antipattern/models/BigQueryRemoteFnRequest.java [35:47]
public BigQueryRemoteFnRequest(
@JsonProperty("requestId") String requestId,
@JsonProperty("caller") String caller,
@JsonProperty("sessionUser") String sessionUser,
@JsonProperty("userDefinedContext") Map<String, String> userDefinedContext,
@JsonProperty("calls") List<JsonNode> calls
) {
this.requestId = requestId;
this.caller = caller;
this.sessionUser = sessionUser;
this.userDefinedContext = userDefinedContext;
this.calls = calls;
}