Suppose you have the Employee struct:
type Employee struct {
id int
Name string
LastName string
Age int
salary float64
email string
}
Select all the fields that will be properly serialized after using the json.Marshal() function on the Employee struct.