Initial commit

This commit is contained in:
Paul Schaub 2022-04-05 19:33:20 +02:00
commit 2f2c6a93c9
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311
28 changed files with 1050 additions and 0 deletions

View file

@ -0,0 +1,17 @@
package pgp.vks.client.response;
import javax.annotation.Nonnull;
import java.util.Map;
public class RequestVerifyResponse {
private final String key_fpr;
private final Map<String, Status> status;
private final String token;
public RequestVerifyResponse(@Nonnull String key_fpr, @Nonnull Map<String, Status> status, @Nonnull String token) {
this.key_fpr = key_fpr;
this.status = status;
this.token = token;
}
}