com.payu.notification.client.model.response.ClientTokenResponse 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 io.swagger.v3.oas.annotations.media.Schema;
import java.time.LocalDateTime;
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 = "Client token response")
public class ClientTokenResponse {
@Schema(description = "Phone number")
private String phoneNumber;
@Schema(description = "FCM Client token")
private String clientToken;
@Schema(description = "Last modified date")
private LocalDateTime lastModifiedDate;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy