Skip to content

Commit d2b18b7

Browse files
committed
#124: update default config values
1 parent 2047296 commit d2b18b7

File tree

1 file changed

+24
-24
lines changed

1 file changed

+24
-24
lines changed

Diff for: example/model_generator/config.yaml

+24-24
Original file line numberDiff line numberDiff line change
@@ -7,30 +7,30 @@ OGM:
77
extra_imports:
88
-
99
properties:
10-
structuredMessage: string?
10+
structuredMessage: String?
1111
beneficiary:
1212
required: true
13-
type: string
13+
type: String
1414
beneficiaryIBAN:
1515
required: true
16-
type: string
16+
type: String
1717
test_Test:
1818
required: true
19-
type: string
19+
type: String
2020
some_Thing:
2121
required: true
22-
type: string
22+
type: String
2323
some_ThinG_huGE:
2424
required: true
25-
type: string
25+
type: String
2626
securityRole:
27-
type: string?
27+
type: String?
2828
jsonKey: securityIndicator
2929
mutableProperty:
30-
type: string?
30+
type: String?
3131
non_final: true
3232
dateChange:
33-
type: datetime?
33+
type: DateTime?
3434
fields:
3535
type: List<List<Testing>>?
3636
simpleFields: List<Testing>
@@ -46,14 +46,14 @@ Testing:
4646
properties:
4747
isFavourite:
4848
ignore: true
49-
type: string?
49+
type: String?
5050
structuredMessage:
51-
type: string?
51+
type: String?
5252
beneficiary:
5353
required: true
54-
type: string
54+
type: String
5555
beneficiaryIBAN:
56-
type: string?
56+
type: String?
5757
dynamicField:
5858
type: dynamic?
5959
duration:
@@ -67,15 +67,15 @@ AdminProfileData:
6767
properties:
6868
privileges:
6969
required: true
70-
type: string
70+
type: String
7171

7272
UserProfileDataExtended:
7373
path: user/profile
7474
extends: UserProfileData
7575
properties:
7676
additionalField:
7777
required: true
78-
type: string
78+
type: String
7979

8080
UserProfileData:
8181
path: user/profile
@@ -84,19 +84,19 @@ UserProfileData:
8484
properties:
8585
firstName:
8686
required: true
87-
type: string
87+
type: String
8888
lastName:
8989
required: true
90-
type: string
90+
type: String
9191
standardLanguage:
9292
required: true
93-
type: string
93+
type: String
9494
mainAccountNumber:
9595
required: true
96-
type: string
96+
type: String
9797
legalEmail:
9898
required: true
99-
type: string
99+
type: String
100100
phones:
101101
required: true
102102
type: Testing
@@ -105,7 +105,7 @@ UserProfileData:
105105
type: OGM
106106
offTrack:
107107
include_if_null: false
108-
type: List<string>?
108+
type: List<String>?
109109
onTrack:
110110
include_if_null: true
111111
type: List<OGM>?
@@ -120,7 +120,7 @@ Person:
120120
properties:
121121
firstName:
122122
required: true
123-
type: string
123+
type: String
124124
gender:
125125
required: true
126126
unknown_enum_value: X
@@ -139,7 +139,7 @@ CustomBaseDirectoryObj:
139139
path: article
140140
properties:
141141
name:
142-
type: string?
142+
type: String?
143143

144144
NoCustomBaseDirectoryObj:
145145
path: article
@@ -159,7 +159,7 @@ Project:
159159
properties:
160160
name:
161161
required: true
162-
type: string
162+
type: String
163163
default_value: "'test'"
164164
cost:
165165
type: double?

0 commit comments

Comments
 (0)