All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.spring.boxes.webhook.starter.push.NotifyMessage Maven / Gradle / Ivy

The newest version!
package com.spring.boxes.webhook.starter.push;

import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;

import java.io.Serializable;
import java.util.List;

@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class NotifyMessage implements Serializable {

    private String title;

    private String message;

    private List notifies;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy