dev.fitko.fitconnect.api.domain.model.destination.DestinationService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client Show documentation
Show all versions of client Show documentation
Library that provides client access to the FIT-Connect api-endpoints for sending, subscribing and
routing
The newest version!
package dev.fitko.fitconnect.api.domain.model.destination;
import com.fasterxml.jackson.annotation.JsonProperty;
import dev.fitko.fitconnect.api.domain.model.metadata.data.SubmissionSchema;
import dev.fitko.fitconnect.api.domain.model.reply.replychannel.ReplyChannel;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.LinkedHashSet;
import java.util.Set;
@Data
@NoArgsConstructor
public class DestinationService {
@JsonProperty("identifier")
private String identifier;
@JsonProperty("regions")
private Set regions = new LinkedHashSet<>();
@JsonProperty("submissionSchemas")
private Set submissionSchemas = new LinkedHashSet<>();
@JsonProperty("replyChannels")
private ReplyChannel replyChannels;
}