defy.tools

Interface PrivateChannelPayload

interface PrivateChannelPayload {
    about?: string;
    contacts: {
        [pubkey: string]: PrivateChannelContactInfo;
    };
    created_at: number;
    kind: number;
    name?: string;
    picture?: string;
    pubkey: string;
    shares: {
        [eventTag: string]: string;
    };
    tags?: string[][];
}

Hierarchy (view full)

Properties

about?: string
contacts: {
    [pubkey: string]: PrivateChannelContactInfo;
}

Type declaration

created_at: number
kind: number
name?: string
picture?: string
pubkey: string
shares: {
    [eventTag: string]: string;
}

Type declaration

  • [eventTag: string]: string
tags?: string[][]