zendesk-messaging-client
    Preparing search index...

    Type Alias AuthorWebhookReadable

    The author of the activity.

    type AuthorWebhookReadable = {
        type: "business" | "user";
        user?: UserReadable;
        userId?: string;
    }
    Index

    Properties

    Properties

    type: "business" | "user"

    The type of the author.

    The user that authored the message or activity. profile is included in the payload if the includeFullUser option is enabled.

    userId?: string

    The id of the user. Only supported when author type is user.