@theophilusdev/conduit
    Preparing search index...

    Interface UserCreatePayload

    interface UserCreatePayload {
        addedParticipants: AddedParticipant[];
        author: string;
        participantIDs: string[];
        threadID: string;
        type: "user:create";
        send(body: ConduitSendableBody): Promise<SentMessage>;
        shareContact(
            message: ConduitSendableBody,
            userID: string,
        ): Promise<SentMessage>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    addedParticipants: AddedParticipant[]
    author: string
    participantIDs: string[]
    threadID: string
    type: "user:create"

    Methods