public record BigQueryRemoteFnResponse()

in src/main/java/com/google/cloud/solutions/bqremoteencryptionfn/BigQueryRemoteFnResponse.java [32:41]


public record BigQueryRemoteFnResponse(List<?> replies, String errorMessage) {

  public static BigQueryRemoteFnResponse withReplies(List<?> replies) {
    return new BigQueryRemoteFnResponse(checkNotNull(replies), null);
  }

  public static BigQueryRemoteFnResponse withErrorMessage(String errorMessage) {
    return new BigQueryRemoteFnResponse(null, errorMessage);
  }
}