dev.fitko.fitconnect.api.domain.model.metadata.Metadata 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
package dev.fitko.fitconnect.api.domain.model.metadata;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import dev.fitko.fitconnect.api.domain.model.metadata.payment.PaymentInformation;
import dev.fitko.fitconnect.api.domain.model.reply.replychannel.ReplyChannel;
import lombok.AllArgsConstructor;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import java.util.List;
@Setter
@EqualsAndHashCode
@AllArgsConstructor
@NoArgsConstructor
@JsonInclude(JsonInclude.Include.NON_NULL)
public class Metadata {
@Getter
@JsonProperty("$schema")
private String schema;
@Getter
@JsonProperty("contentStructure")
private ContentStructure contentStructure = new ContentStructure();
@Getter
@JsonProperty("authenticationInformation")
private List authenticationInformation;
@Getter
@JsonProperty("paymentInformation")
private PaymentInformation paymentInformation;
@Getter
@JsonProperty("replyChannel")
private ReplyChannel replyChannel;
@Getter
@JsonProperty("additionalReferenceInfo")
private AdditionalReferenceInfo additionalReferenceInfo;
}