interface EncryptedNote {
    created_at: bigint;
    data: string;
    encrypted_text: string;
    history: HistoryEntry[];
    id: bigint;
    locked: boolean;
    owner: string;
    read_by: string[];
    updated_at: bigint;
    users: [string, PrincipalRule][];
}

Properties

created_at: bigint
data: string
encrypted_text: string
history: HistoryEntry[]
id: bigint
locked: boolean
owner: string
read_by: string[]
updated_at: bigint
users: [string, PrincipalRule][]