dev.fitko.fitconnect.api.domain.model.reply.SentReply 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.reply;
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;
import java.util.ArrayList;
import java.util.List;
import java.util.UUID;
@Getter
@NoArgsConstructor
@AllArgsConstructor
public class SentReply {
private UUID replyId;
private UUID caseId;
private List attachments = new ArrayList<>();
}