com.brihaspathee.zeus.message.AccountValidationRequest Maven / Gradle / Ivy
The newest version!
package com.brihaspathee.zeus.message;
import com.brihaspathee.zeus.dto.account.AccountDto;
import lombok.*;
/**
* Created in Intellij IDEA
* User: Balaji Varadharajan
* Date: 22, September 2022
* Time: 10:50 AM
* Project: Zeus
* Package Name: com.brihaspathee.zeus.message
* To change this template use File | Settings | File and Code Template
*/
@Getter
@Setter
@Builder
@AllArgsConstructor
@NoArgsConstructor
public class AccountValidationRequest {
/**
* Unique id for the message
*/
private String validationMessageId;
/**
* The account that needs to be validated
*/
private AccountDto accountDto;
}