@@ -221,7 +221,7 @@ OSNotification copy() {
221
221
.setNotificationExtender (notificationExtender )
222
222
.setGroupedNotifications (groupedNotifications )
223
223
.setAndroidNotificationId (androidNotificationId )
224
- .setNotificationID (notificationId )
224
+ .setNotificationId (notificationId )
225
225
.setTemplateName (templateName )
226
226
.setTemplateId (templateId )
227
227
.setTitle (title )
@@ -533,7 +533,7 @@ public String toString() {
533
533
}
534
534
535
535
/**
536
- * List of action buttons on the notification. Part of {@link OSNotificationPayload}.
536
+ * List of action buttons on the notification.
537
537
*/
538
538
public static class ActionButton {
539
539
private String id ;
@@ -582,7 +582,7 @@ public String getIcon() {
582
582
}
583
583
584
584
/**
585
- * If a background image was set, this object will be available. Part of {@link OSNotificationPayload}.
585
+ * If a background image was set, this object will be available.
586
586
*/
587
587
public static class BackgroundImageLayout {
588
588
private String image ;
@@ -608,7 +608,7 @@ public static class OSNotificationBuilder {
608
608
private List <OSNotification > groupedNotifications ;
609
609
private int androidNotificationId ;
610
610
611
- private String notificationID ;
611
+ private String notificationId ;
612
612
private String templateName , templateId ;
613
613
private String title , body ;
614
614
private JSONObject additionalData ;
@@ -647,8 +647,8 @@ public OSNotificationBuilder setAndroidNotificationId(int androidNotificationId)
647
647
return this ;
648
648
}
649
649
650
- public OSNotificationBuilder setNotificationID (String notificationID ) {
651
- this .notificationID = notificationID ;
650
+ public OSNotificationBuilder setNotificationId (String notificationId ) {
651
+ this .notificationId = notificationId ;
652
652
return this ;
653
653
}
654
654
@@ -762,7 +762,7 @@ public OSNotification build() {
762
762
payload .setNotificationExtender (notificationExtender );
763
763
payload .setGroupedNotifications (groupedNotifications );
764
764
payload .setAndroidNotificationId (androidNotificationId );
765
- payload .setNotificationId (notificationID );
765
+ payload .setNotificationId (notificationId );
766
766
payload .setTemplateName (templateName );
767
767
payload .setTemplateId (templateId );
768
768
payload .setTitle (title );
0 commit comments