@theophilusdev/conduit
    Preparing search index...

    Interface ThreadPhotoReplacedPayload

    interface ThreadPhotoReplacedPayload {
        author: string;
        image: { attachmentID: string; height: number; url: string; width: number };
        participantIDs: string[];
        threadID: string;
        timestamp: string;
        type: "thread:photo_replaced";
        send(body: ConduitSendableBody): Promise<SentMessage>;
        shareContact(
            message: ConduitSendableBody,
            userID: string,
        ): Promise<SentMessage>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    author: string
    image: { attachmentID: string; height: number; url: string; width: number }
    participantIDs: string[]
    threadID: string
    timestamp: string
    type: "thread:photo_replaced"

    Methods