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.
20 lines
514 B
Java
20 lines
514 B
Java
package com.mfsys.uco.dto.Transaction;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
import lombok.Data;
|
|
import lombok.RequiredArgsConstructor;
|
|
|
|
@Data
|
|
@RequiredArgsConstructor
|
|
public class TransactionOtpRequestModel {
|
|
private String porOrgacode;
|
|
private String pctCstycode;
|
|
private String channelCode;
|
|
private String cmpCustcode;
|
|
private String email;
|
|
private String pinType;
|
|
private String transPincode;
|
|
@JsonProperty("isOtpRequired")
|
|
private boolean isOtpRequired;
|
|
}
|