You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**None** | Field names are used as-is, without changing them. This is the default. |
201
201
**PascalCase** | Field names are transformed to PascalCase. This removes all underscores, and the first character and every character after an underscore is changed to uppercase. The case of other characters is not changed. | `some_name`, `_some_name`, `_someName` => SomeName
202
-
**CamelCase** | Field names are transformed to camcelCase. Similar to PascalCase, but the first character will not be uppercase. | `some_name`, `_some_name`, `_SomeName`=> someName
202
+
**CamelCase** | Field names are transformed to camelCase. Similar to PascalCase, but the first character will not be uppercase. | `some_name`, `_some_name`, `_SomeName`=> someName
203
203
**SnakeCase** | Field names are transformed to snake_case. This removes leading and trailing underscores, changes all characters to lower-case, and reduces consecutive underscores to a single underscore. An underscore is inserted before previously capitalized letters. | `some_name`, `_some__name`, `_someName` => some_name
204
204
**DashCase** | Field names are transformed to dash-case. Similar to SnakeCase, but uses a dash instead of an underscore. | `some_name`, `_some__name`, `_someName` => some-name
205
205
**Trim** | Removes leading and trailing underscores, but leaves the rest of the name alone. | `some_name`, `_some_name` => some_name; `_someName` => someName
0 commit comments