in src/main/java/com/epam/digital/data/platform/auth/generator/client/BpmsRestClient.java [110:117]
private String serializeAuthorizationCreateDto(Object requestBody) {
try {
return objectMapper.writeValueAsString(requestBody);
} catch (JsonProcessingException e) {
e.clearLocation();
throw new IllegalArgumentException("Couldn't serialize request body", e);
}
}