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

id.unum.dto.DecryptedPresentation Maven / Gradle / Ivy

The newest version!
package id.unum.dto;

import com.fasterxml.jackson.annotation.JsonProperty;
import id.unum.enums.PresentationTypes;
import id.unum.types.dto.Presentation;
import lombok.Data;
import lombok.NoArgsConstructor;

@Data
@NoArgsConstructor
public class DecryptedPresentation {
    @JsonProperty("isVerified")
    boolean isVerified;
    String message;
    PresentationTypes type;
    Presentation presentation;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy