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
title: DatumGesendet
x-stoplight:
id: nzlj4zrmsiwoh
type: object
description: 'Zeitpunkt, zu dem die Nachricht vom Benutzer an das System übergeben wurde.'
properties:
datumGesendet:
type: string
format: date-time
description: 'Zeitpunkt, zu dem die Nachricht vom Benutzer an das System übergeben wurde.'
required:
- datumGesendet
without that string:date-time => java.time.OffsetDateTime:
/** Zeitpunkt, zu dem die Nachricht vom Benutzer an das System übergeben wurde. */
@NotNull
@JsonProperty("datumGesendet")
private OffsetDateTime datumGesendet;
The text was updated successfully, but these errors were encountered:
having custom annotation will lead to breaking javadoc generation
having:
and
will generate:
without that
string:date-time => java.time.OffsetDateTime
:The text was updated successfully, but these errors were encountered: