dev.fitko.fitconnect.api.domain.zbp.state.CreateState 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.zbp.state;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.NoArgsConstructor;
import java.time.Instant;
import java.util.UUID;
@Builder
@Getter
@NoArgsConstructor
@AllArgsConstructor
@EqualsAndHashCode
public class CreateState {
@JsonProperty("applicationId")
private UUID applicationId;
@JsonProperty("status")
private State state;
@JsonProperty("publicServiceName")
private PublicServiceName publicServiceName;
@JsonProperty("statusDetails")
private StatusDetails statusDetails;
@JsonProperty("additionalInformation")
private AdditionalInformation additionalInformation;
@JsonProperty("reference")
private String reference;
@JsonProperty("senderName")
private String senderName;
@JsonProperty("createdDate")
private Instant createdDate;
}