mirror of
https://github.com/signalapp/Signal-Server
synced 2026-04-21 07:58:05 +01:00
Call link auth credential
This commit is contained in:
@@ -9,8 +9,11 @@ import java.util.List;
|
||||
import java.util.UUID;
|
||||
import javax.annotation.Nullable;
|
||||
|
||||
public record GroupCredentials(List<GroupCredential> credentials, @Nullable UUID pni) {
|
||||
public record GroupCredentials(List<GroupCredential> credentials, List<CallLinkAuthCredential> callLinkAuthCredentials, @Nullable UUID pni) {
|
||||
|
||||
public record GroupCredential(byte[] credential, long redemptionTime) {
|
||||
}
|
||||
|
||||
public record CallLinkAuthCredential(byte[] credential, long redemptionTime) {
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user