We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 923dc26 commit 158c69eCopy full SHA for 158c69e
1 file changed
docs/generatr/identifier.md
@@ -29,15 +29,15 @@ first letter on the next word. The special characters are:
29
For properties of model classes, the properties will be annotated with `@JsonProperty` to provide
30
the mapping from the OpenAPI identifier to the Java identifier.
31
32
+```java
33
class Example {
34
35
@JsonProperty("foo-bar")
36
private String fooBar;
37
38
// ...
39
}
-
40
+```
41
42
[java-char-start]: https://docs.oracle.com/en/java/javase/13/docs/api/java.base/java/lang/Character.html#isJavaIdentifierStart(char)
43
[java-char-part]: https://docs.oracle.com/en/java/javase/13/docs/api/java.base/java/lang/Character.html#isJavaIdentifierPart(char)
0 commit comments