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.
23 lines
589 B
Java
23 lines
589 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 ChangeTransactionPinRequest {
|
|
private String oldTransPincode;
|
|
private String newTransPincode;
|
|
private String channelCode;
|
|
private String pctCstycode;
|
|
private String porOrgacode;
|
|
private String cmpCustcode;
|
|
@JsonProperty("isOtpRequired")
|
|
private boolean isOtpRequired;
|
|
private String pinType;
|
|
} |