io.github.mrtimeey.herodomainmodel.model.PersonalInformation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of object-finder Show documentation
Show all versions of object-finder Show documentation
Library for finding objects in complex data structures
package io.github.mrtimeey.herodomainmodel.model;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
@JsonSerialize
public record PersonalInformation(Identity identity, String citizenship) {
public static PersonalInformation of(Identity identity, String citizenship) {
return new PersonalInformation(identity, citizenship);
}
}