All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.brihaspathee.zeus.message.AccountValidationRequest Maven / Gradle / Ivy

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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy