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

com.quorum.tessera.api.DeleteRequest Maven / Gradle / Ivy

package com.quorum.tessera.api;

import io.swagger.v3.oas.annotations.media.Schema;
import jakarta.validation.constraints.NotNull;
import jakarta.validation.constraints.Size;

/**
 * Model representation of a JSON body on incoming HTTP requests
 *
 * 

Contains information that is used to delete a transaction */ public class DeleteRequest { @Schema( description = "hash indicating encrypted payload to delete from database", format = "base64") @Size(min = 1) @NotNull private String key; public String getKey() { return key; } public void setKey(final String key) { this.key = key; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy