All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dev.fitko.fitconnect.api.domain.zbp.state.CreateState Maven / Gradle / Ivy

Go to download

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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy