Create call link credential endpoint

This commit is contained in:
Katherine Yen
2023-05-04 14:33:45 -07:00
committed by GitHub
parent b2b0aee4b7
commit 7ba86b40aa
6 changed files with 149 additions and 47 deletions

View File

@@ -0,0 +1,3 @@
package org.whispersystems.textsecuregcm.entities;
public record CreateCallLinkCredential(byte[] credential, long redemptionTime){}

View File

@@ -0,0 +1,5 @@
package org.whispersystems.textsecuregcm.entities;
import javax.validation.constraints.NotNull;
public record GetCreateCallLinkCredentialsRequest(@NotNull byte[] createCallLinkCredentialRequest) {}