no.ks.fiks.io.klient.MeldingSpesifikasjonApiModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fiks-io-send-klient Show documentation
Show all versions of fiks-io-send-klient Show documentation
Klient for å sende meldinger til FIKS IO
package no.ks.fiks.io.klient;
import lombok.Builder;
import lombok.Value;
import javax.validation.constraints.NotNull;
import java.util.UUID;
@Value
@Builder
public class MeldingSpesifikasjonApiModel {
@NotNull private UUID avsenderKontoId;
@NotNull private UUID mottakerKontoId;
@NotNull private String meldingType;
private UUID svarPaMelding;
private Long ttl;
}