com.payu.notification.client.model.response.NotificationClientResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ms-notification-client Show documentation
Show all versions of ms-notification-client Show documentation
Module client du micro service notification
The newest version!
package com.payu.notification.client.model.response;
import com.payu.notification.client.model.enums.FcmStatus;
import io.swagger.v3.oas.annotations.media.Schema;
import java.util.Set;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import lombok.ToString;
@Getter
@Setter
@ToString
@NoArgsConstructor
@AllArgsConstructor
@Builder
@Schema(description = "Notification topic response")
public class NotificationClientResponse {
@Schema(description = "Message")
private String message;
@Schema(description = "Title")
private String title;
@Schema(description = "Status")
private FcmStatus status;
@Schema(description = "Phone number list")
private Set phoneNumberList;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy