-
Gets a list of annotations to apply to generated member variables representing OData navigation properties.
Default implementation for the SAP Cloud SDK which adds the following annotations:
Gson SerializedName
with the value set to the OData EDM name of the navigation property.
Jackson JsonProperty
with the value set to the OData EDM name of the navigation property.
Nullable
, but only if the multiplicity of the navigation property is 1..1 or 0..1
Gets a list of annotations to apply to generated classes representing OData complex types, at the class level.
Default implementation for the SAP Cloud SDK which adds the following annotations:
Lombok Builder
, NoArgsConstructor
, and AllArgsConstructor
.
Gets a list of annotations to apply to generated member variables representing OData properties of complex types.
Default implementation for the SAP Cloud SDK which adds the following annotations:
Gson SerializedName
with the value set to the OData EDM name of the complex type property.
Jackson JsonProperty
with the value set to the OData EDM name of the complex type property.
Nullable
Gson JsonAdapter
with default parameter set to an appropriate TypeAdapter
class.
Gets a list of annotations to apply to generated classes representing OData entities, at the class level.
Default implementation for the SAP Cloud SDK which adds the following annotations:
Lombok Builder
, NoArgsConstructor
, and AllArgsConstructor
.
Gets a list of annotations to apply to generated member variables representing OData properties of entities.
Default implementation for the SAP Cloud SDK which adds the following annotations:
Gson SerializedName
with the value set to the OData EDM name of the entity property.
Jackson JsonProperty
with the value set to the OData EDM name of the entity property.
Nullable
Gson JsonAdapter
with default parameter set to an appropriate TypeAdapter
class.