From e03b55be17261ed13ddf421bcf4a804a083a7614 Mon Sep 17 00:00:00 2001 From: Thorsten Ortlepp Date: Fri, 26 Apr 2024 00:30:46 +0200 Subject: added implementation --- .../java/eu/ortlepp/notificationsender/model/Notifications.java | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/main/java/eu/ortlepp/notificationsender/model/Notifications.java (limited to 'src/main/java/eu/ortlepp/notificationsender/model/Notifications.java') diff --git a/src/main/java/eu/ortlepp/notificationsender/model/Notifications.java b/src/main/java/eu/ortlepp/notificationsender/model/Notifications.java new file mode 100644 index 0000000..65f7620 --- /dev/null +++ b/src/main/java/eu/ortlepp/notificationsender/model/Notifications.java @@ -0,0 +1,8 @@ +package eu.ortlepp.notificationsender.model; + +/** + * The expected input data of the Lambda. + * + * @param messages The messages / notifications + */ +public record Notifications(String[] messages) {} -- cgit v1.2.3