dev.fitko.fitconnect.api.domain.model.reply.RepliesForPickup 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.reply;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.LinkedHashSet;
import java.util.Set;
@Data
@NoArgsConstructor
public class RepliesForPickup {
@JsonProperty("count")
private Integer count;
@JsonProperty("offset")
private Integer offset;
@JsonProperty("totalCount")
private Integer totalCount;
@JsonProperty("replies")
private Set replies = new LinkedHashSet<>();
}