What fields will be serialized?

Report a typo

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.

Select one or more options from the list
___

Create a free account to access the full topic