mirror of
https://codeberg.org/PGPainless/vks-java.git
synced 2025-09-15 14:19:40 +02:00
Initial commit
This commit is contained in:
commit
2f2c6a93c9
28 changed files with 1050 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue