From 709c71e48eb6681578ea9a74ed5f358e9adebf84 Mon Sep 17 00:00:00 2001 From: TonCherAmi Date: Mon, 19 Sep 2022 20:57:31 +0300 Subject: [PATCH] Make push notification title, description nullable (#81) * Make push notification title nullable * Make push notification description nullable --- .../ru/touchin/push/message/provider/dto/Notification.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/push-message-provider/src/main/kotlin/ru/touchin/push/message/provider/dto/Notification.kt b/push-message-provider/src/main/kotlin/ru/touchin/push/message/provider/dto/Notification.kt index c709225..0b10a0a 100644 --- a/push-message-provider/src/main/kotlin/ru/touchin/push/message/provider/dto/Notification.kt +++ b/push-message-provider/src/main/kotlin/ru/touchin/push/message/provider/dto/Notification.kt @@ -1,7 +1,7 @@ package ru.touchin.push.message.provider.dto class Notification( - val title: String, - val description: String, + val title: String?, + val description: String?, val imageUrl: String? )