com.descope.model.magiclink.response.MaskedEmailRes Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk Show documentation
Show all versions of java-sdk Show documentation
Java library used to integrate with Descope.
package com.descope.model.magiclink.response;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@NoArgsConstructor
@AllArgsConstructor
public class MaskedEmailRes implements Masked {
// Masked email to which the message was sent
private String maskedEmail;
@Override
public String getMasked() {
return maskedEmail;
}
}