What is the most effective method to implement a modal for nested objects in the body payload of a POST API using Angular 8?
{
"Reason": "Test",
"address": "abcd",
"nested address": {
"id": 012,
"name": "testname"
},
"contact": {
"id": 1001,
"name": "contactname"
},
"numbers": 111,
"price": 10000,
"group": {
"id": 00,
"title": "string"
}
}