I need Multifield List values to Sling Model class
For single value property we call
@inject
@Named("Author")
@Via("resource")
String authorPath;
But i have property contains String[] that have JSON type, How can i get that values in sling Model class variable
Can i get like below
@Inject
@Via("resource")
Private List<> authorList;