zendesk-messaging-client
    Preparing search index...

    Type Alias UserUpdateEventReadable

    UserUpdateEventReadable: EventSubSchema & {
        payload?: {
            reason?: "authentication" | "localeDetection";
            source?: SourceWebhook;
            user?: UserReadable;
        };
    }

    user:update

    Type declaration

    • Optionalpayload?: {
          reason?: "authentication" | "localeDetection";
          source?: SourceWebhook;
          user?: UserReadable;
      }

      The payload of the event. The contents of this object depend on the type of event.

      • Optionalreason?: "authentication" | "localeDetection"

        The reason why the user was updated, if applicable.

        • authentication - An anonymous user became an identified user.
        • localeDetection - A user was updated as a result of automated locale detection on messages sent.
      • Optionalsource?: SourceWebhook

        The source of the creation.

      • Optionaluser?: UserReadable

        The updated user.