Given the following class definition, which fields will be present in the JSON resulting from Gson's default serialization of a Person object?
class Person {
String name = "Sophocles";
int age = 93;
String country = null;
String occupation = null;
}