#### Issue Summary Stag fails to find the getter for a list of maps, #### Reproduction Steps ```kotlin @UseStag @Generated("com.robohorse.robopojogenerator") data class RequestBodyTransaction( @field:SerializedName("restrictions") var listOfMaps: List<Map<String, String>> = emptyList() ) ``` #### Expected Behavior To work and parse a list of maps #### Actual Behavior A Compile error as below ``` RequestBodyTransaction.java:16: error: Unable to find getter for variable: restrictions private java.util.List<? extends java.util.Map<java.lang.String, java.lang.String>> restrictions; ^ ```
Issue Summary
Stag fails to find the getter for a list of maps,
Reproduction Steps
Expected Behavior
To work and parse a list of maps
Actual Behavior
A Compile error as below