You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
546 B
Java
24 lines
546 B
Java
package com.mfsys.uco.dto;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.Builder;
|
|
import lombok.Data;
|
|
import lombok.NoArgsConstructor;
|
|
|
|
@Data
|
|
@Builder
|
|
@AllArgsConstructor
|
|
@NoArgsConstructor
|
|
public class OTPRequest {
|
|
@JsonProperty("isOtpRequired")
|
|
private boolean isOtpRequired;
|
|
private String email;
|
|
private String phone;
|
|
private String channelCode;
|
|
private String porOrgacode;
|
|
private String username;
|
|
private String pinType;
|
|
private String subject;
|
|
}
|