5555})
5656public class BaseSession {
5757 public static final String JSON_PROPERTY_ID = "id" ;
58+ @ jakarta .annotation .Nonnull
5859 private String id ;
5960
6061 public static final String JSON_PROPERTY_TITLE = "title" ;
62+ @ jakarta .annotation .Nonnull
6163 private String title ;
6264
6365 public static final String JSON_PROPERTY_DESCRIPTION = "description" ;
66+ @ jakarta .annotation .Nullable
6467 private JsonNullable <String > description = JsonNullable .<String >undefined ();
6568
6669 public static final String JSON_PROPERTY_STARTS_AT = "startsAt" ;
70+ @ jakarta .annotation .Nullable
6771 private OffsetDateTime startsAt ;
6872
6973 public static final String JSON_PROPERTY_ENDS_AT = "endsAt" ;
74+ @ jakarta .annotation .Nullable
7075 private OffsetDateTime endsAt ;
7176
7277 public static final String JSON_PROPERTY_IS_SERVICE_SESSION = "isServiceSession" ;
78+ @ jakarta .annotation .Nonnull
7379 private Boolean isServiceSession ;
7480
7581 public static final String JSON_PROPERTY_IS_PLENUM_SESSION = "isPlenumSession" ;
82+ @ jakarta .annotation .Nonnull
7683 private Boolean isPlenumSession ;
7784
7885 public static final String JSON_PROPERTY_CATEGORY_ITEMS = "categoryItems" ;
86+ @ jakarta .annotation .Nonnull
7987 private List <Integer > categoryItems = new ArrayList <>();
8088
8189 public static final String JSON_PROPERTY_ROOM_ID = "roomId" ;
90+ @ jakarta .annotation .Nullable
8291 private Integer roomId ;
8392
8493 public static final String JSON_PROPERTY_LIVE_URL = "liveUrl" ;
94+ @ jakarta .annotation .Nullable
8595 private JsonNullable <URI > liveUrl = JsonNullable .<URI >undefined ();
8696
8797 public static final String JSON_PROPERTY_RECORDING_URL = "recordingUrl" ;
98+ @ jakarta .annotation .Nullable
8899 private JsonNullable <URI > recordingUrl = JsonNullable .<URI >undefined ();
89100
90101 public static final String JSON_PROPERTY_STATUS = "status" ;
102+ @ jakarta .annotation .Nonnull
91103 private Status status ;
92104
93105 public BaseSession () {
94106 }
95107
96- public BaseSession id (String id ) {
108+ public BaseSession id (@ jakarta . annotation . Nonnull String id ) {
97109
98110 this .id = id ;
99111 return this ;
@@ -114,11 +126,11 @@ public String getId() {
114126
115127 @ JsonProperty (JSON_PROPERTY_ID )
116128 @ JsonInclude (value = JsonInclude .Include .ALWAYS )
117- public void setId (String id ) {
129+ public void setId (@ jakarta . annotation . Nonnull String id ) {
118130 this .id = id ;
119131 }
120132
121- public BaseSession title (String title ) {
133+ public BaseSession title (@ jakarta . annotation . Nonnull String title ) {
122134
123135 this .title = title ;
124136 return this ;
@@ -139,11 +151,11 @@ public String getTitle() {
139151
140152 @ JsonProperty (JSON_PROPERTY_TITLE )
141153 @ JsonInclude (value = JsonInclude .Include .ALWAYS )
142- public void setTitle (String title ) {
154+ public void setTitle (@ jakarta . annotation . Nonnull String title ) {
143155 this .title = title ;
144156 }
145157
146- public BaseSession description (String description ) {
158+ public BaseSession description (@ jakarta . annotation . Nullable String description ) {
147159 this .description = JsonNullable .<String >of (description );
148160
149161 return this ;
@@ -172,11 +184,11 @@ public void setDescription_JsonNullable(JsonNullable<String> description) {
172184 this .description = description ;
173185 }
174186
175- public void setDescription (String description ) {
187+ public void setDescription (@ jakarta . annotation . Nullable String description ) {
176188 this .description = JsonNullable .<String >of (description );
177189 }
178190
179- public BaseSession startsAt (OffsetDateTime startsAt ) {
191+ public BaseSession startsAt (@ jakarta . annotation . Nullable OffsetDateTime startsAt ) {
180192
181193 this .startsAt = startsAt ;
182194 return this ;
@@ -197,11 +209,11 @@ public OffsetDateTime getStartsAt() {
197209
198210 @ JsonProperty (JSON_PROPERTY_STARTS_AT )
199211 @ JsonInclude (value = JsonInclude .Include .ALWAYS )
200- public void setStartsAt (OffsetDateTime startsAt ) {
212+ public void setStartsAt (@ jakarta . annotation . Nullable OffsetDateTime startsAt ) {
201213 this .startsAt = startsAt ;
202214 }
203215
204- public BaseSession endsAt (OffsetDateTime endsAt ) {
216+ public BaseSession endsAt (@ jakarta . annotation . Nullable OffsetDateTime endsAt ) {
205217
206218 this .endsAt = endsAt ;
207219 return this ;
@@ -222,11 +234,11 @@ public OffsetDateTime getEndsAt() {
222234
223235 @ JsonProperty (JSON_PROPERTY_ENDS_AT )
224236 @ JsonInclude (value = JsonInclude .Include .ALWAYS )
225- public void setEndsAt (OffsetDateTime endsAt ) {
237+ public void setEndsAt (@ jakarta . annotation . Nullable OffsetDateTime endsAt ) {
226238 this .endsAt = endsAt ;
227239 }
228240
229- public BaseSession isServiceSession (Boolean isServiceSession ) {
241+ public BaseSession isServiceSession (@ jakarta . annotation . Nonnull Boolean isServiceSession ) {
230242
231243 this .isServiceSession = isServiceSession ;
232244 return this ;
@@ -247,11 +259,11 @@ public Boolean getIsServiceSession() {
247259
248260 @ JsonProperty (JSON_PROPERTY_IS_SERVICE_SESSION )
249261 @ JsonInclude (value = JsonInclude .Include .ALWAYS )
250- public void setIsServiceSession (Boolean isServiceSession ) {
262+ public void setIsServiceSession (@ jakarta . annotation . Nonnull Boolean isServiceSession ) {
251263 this .isServiceSession = isServiceSession ;
252264 }
253265
254- public BaseSession isPlenumSession (Boolean isPlenumSession ) {
266+ public BaseSession isPlenumSession (@ jakarta . annotation . Nonnull Boolean isPlenumSession ) {
255267
256268 this .isPlenumSession = isPlenumSession ;
257269 return this ;
@@ -272,11 +284,11 @@ public Boolean getIsPlenumSession() {
272284
273285 @ JsonProperty (JSON_PROPERTY_IS_PLENUM_SESSION )
274286 @ JsonInclude (value = JsonInclude .Include .ALWAYS )
275- public void setIsPlenumSession (Boolean isPlenumSession ) {
287+ public void setIsPlenumSession (@ jakarta . annotation . Nonnull Boolean isPlenumSession ) {
276288 this .isPlenumSession = isPlenumSession ;
277289 }
278290
279- public BaseSession categoryItems (List <Integer > categoryItems ) {
291+ public BaseSession categoryItems (@ jakarta . annotation . Nonnull List <Integer > categoryItems ) {
280292
281293 this .categoryItems = categoryItems ;
282294 return this ;
@@ -305,11 +317,11 @@ public List<Integer> getCategoryItems() {
305317
306318 @ JsonProperty (JSON_PROPERTY_CATEGORY_ITEMS )
307319 @ JsonInclude (value = JsonInclude .Include .ALWAYS )
308- public void setCategoryItems (List <Integer > categoryItems ) {
320+ public void setCategoryItems (@ jakarta . annotation . Nonnull List <Integer > categoryItems ) {
309321 this .categoryItems = categoryItems ;
310322 }
311323
312- public BaseSession roomId (Integer roomId ) {
324+ public BaseSession roomId (@ jakarta . annotation . Nullable Integer roomId ) {
313325
314326 this .roomId = roomId ;
315327 return this ;
@@ -330,11 +342,11 @@ public Integer getRoomId() {
330342
331343 @ JsonProperty (JSON_PROPERTY_ROOM_ID )
332344 @ JsonInclude (value = JsonInclude .Include .ALWAYS )
333- public void setRoomId (Integer roomId ) {
345+ public void setRoomId (@ jakarta . annotation . Nullable Integer roomId ) {
334346 this .roomId = roomId ;
335347 }
336348
337- public BaseSession liveUrl (URI liveUrl ) {
349+ public BaseSession liveUrl (@ jakarta . annotation . Nullable URI liveUrl ) {
338350 this .liveUrl = JsonNullable .<URI >of (liveUrl );
339351
340352 return this ;
@@ -363,11 +375,11 @@ public void setLiveUrl_JsonNullable(JsonNullable<URI> liveUrl) {
363375 this .liveUrl = liveUrl ;
364376 }
365377
366- public void setLiveUrl (URI liveUrl ) {
378+ public void setLiveUrl (@ jakarta . annotation . Nullable URI liveUrl ) {
367379 this .liveUrl = JsonNullable .<URI >of (liveUrl );
368380 }
369381
370- public BaseSession recordingUrl (URI recordingUrl ) {
382+ public BaseSession recordingUrl (@ jakarta . annotation . Nullable URI recordingUrl ) {
371383 this .recordingUrl = JsonNullable .<URI >of (recordingUrl );
372384
373385 return this ;
@@ -396,11 +408,11 @@ public void setRecordingUrl_JsonNullable(JsonNullable<URI> recordingUrl) {
396408 this .recordingUrl = recordingUrl ;
397409 }
398410
399- public void setRecordingUrl (URI recordingUrl ) {
411+ public void setRecordingUrl (@ jakarta . annotation . Nullable URI recordingUrl ) {
400412 this .recordingUrl = JsonNullable .<URI >of (recordingUrl );
401413 }
402414
403- public BaseSession status (Status status ) {
415+ public BaseSession status (@ jakarta . annotation . Nonnull Status status ) {
404416
405417 this .status = status ;
406418 return this ;
@@ -421,7 +433,7 @@ public Status getStatus() {
421433
422434 @ JsonProperty (JSON_PROPERTY_STATUS )
423435 @ JsonInclude (value = JsonInclude .Include .ALWAYS )
424- public void setStatus (Status status ) {
436+ public void setStatus (@ jakarta . annotation . Nonnull Status status ) {
425437 this .status = status ;
426438 }
427439
0 commit comments