generate Methods
Specifies which methods will be auto generated on operations, models, fragments and input objects.
Pass a list of any of the following:
"equalsHashCode" generates
equalsandhashCodemethods that will compare generated class properties"toString" generates a method that will print a pretty string representing the data in the class
"copy" (Kotlin only) generates a method that will copy the class with named parameters for
"dataClass" (Kotlin only and redundant with all other methods) generates the class as a data class which will automatically generate
toString,copy,equalsandhashCode.
Default for kotlin: listOf("data") Default for Java: listOf("equalsHashCode", "toString")