inaturalistjs
    Preparing search index...

    Type Alias PostMessage

    type PostMessage = {
        message?: {
            body?: string;
            subject?: string;
            threadId?: number;
            toUserId?: number;
        };
    }
    Index

    Properties

    Properties

    message?: {
        body?: string;
        subject?: string;
        threadId?: number;
        toUserId?: number;
    }

    Type declaration

    • Optionalbody?: string

      Body of the message

    • Optionalsubject?: string

      Subject of the message

    • OptionalthreadId?: number

      Identifier for the thread. Should be blank for new threads, but when replying to an existing message, it should be set to the thread_id of the message being replied to.

    • OptionaltoUserId?: number

      User ID of the recipient