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.
UCO-BS/src/main/java/com/mfsys/uco/dto/TransactionOtpResponse.java

24 lines
377 B
Java

package com.mfsys.uco.dto;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.NoArgsConstructor;
import java.time.LocalDateTime;
@Builder
@AllArgsConstructor
@NoArgsConstructor
public class TransactionOtpResponse {
public Long pinserial;
public String obpPincode;
public LocalDateTime pinCreation;
public LocalDateTime pinExpiry;
}