'go-fiber BodyParser "converter not found for struct structName"

I'm trying to convert my current Rest API from Express.js to GO using fiber, so I am a bit new to golang, i want to parse nested JSON to nested structure in request body, I even tried the same example on github go-fiber example, but I'm getting the error "schema: converter not found for User"

here is the example:

type User struct {
  FName string
  LName string
}

type respData struct {
  User
  Address
  Cart
}
respStruct := respData{}
err := c.BodyParser(&respStruct)


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source