i have this bank api
```
curl -X POST <http://localhost:8080/api/users> \
-H "Content-Type: application/json" \
-d '{
"name": "John Doe",
"email": "john.doe@example.com"
}'
```
and this is the response:
```json
{
"id": 1,
"name": "John Doe",
"email": "john.doe@example.com"
}
```
and i want to map it to this model
```java
package com.example.demo.model;
public class User {
private Long userId;
private String userName;
private String userEmail;
}
```
and i have these inputs
```json
{
"data": {
"name": "Ayah Refai",
"email": "ayah@yopmail.com"
}
}
```