@Target(value=FIELD)
@Retention(value=CLASS)
public @interface JsonField
@JsonField(name = "random_variable_name")
public String randomVariableName;
| Modifier and Type | Optional Element and Description |
|---|---|
java.lang.String[] |
name
The name(s) of this field in JSON.
|
java.lang.Class |
typeConverter
The TypeConverter that will be used to parse/serialize this variable.
|