repo.or.cz
/
ProtonMail-WebClient.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'feat/inda-383-daily-stat' into 'main'
[ProtonMail-WebClient.git]
/
packages
/
shared
/
lib
/
interfaces
/
calendar
/
Passphrase.ts
blob
f35bf40c1ad4a549a54516be948db3c547170662
1
export interface MemberPassphrase {
2
MemberID: string;
3
Passphrase: string;
4
Signature: string;
5
}
6
7
export interface Invitation {
8
CalendarID: string;
9
PassphraseID: string;
10
InvitationID: string;
11
Status: number;
12
CreateTime: number;
13
ExpirationTime: number;
14
Permissions: number;
15
Email: string;
16
}
17
18
export interface Passphrase {
19
ID: string;
20
Flags: number;
21
MemberPassphrases: MemberPassphrase[];
22
Invitations: Invitation[];
23
}