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
Is there a @JsonIgnore like in Jackson java api ?
because we don't want to serialize/deserialize some attribute of a TS Class
`
export class Patient {
firstname: string = void 0;
id: string = void 0;
lastname: string = void 0;
sex: string = void 0;
@JsonProperty({ clazz: TEST })
test: TEST[] = void 0;
// @JsonIgnore we don't want to serialize this
oneProperty: string = void 0;
}
`
How to specify a default value when deserialize make a attribute value equals to undefined or null ?
The text was updated successfully, but these errors were encountered:
Is there a @JsonIgnore like in Jackson java api ?
because we don't want to serialize/deserialize some attribute of a TS Class
`
export class Patient {
firstname: string = void 0;
id: string = void 0;
lastname: string = void 0;
sex: string = void 0;
@JsonProperty({ clazz: TEST })
test: TEST[] = void 0;
// @JsonIgnore we don't want to serialize this
oneProperty: string = void 0;
}
`
How to specify a default value when deserialize make a attribute value equals to undefined or null ?
The text was updated successfully, but these errors were encountered: