Current section

Files

Jump to
okta_api lib okta event_hook_handler.ex
Raw

lib/okta/event_hook_handler.ex

defmodule Okta.EventHookHandler do
@moduledoc """
Event Hook Handler handles incoming Event Hooks from Okta.
Read more about Event Hooks in the official documation:
* https://developer.okta.com/docs/concepts/event-hooks/
"""
@type event :: %{}
@callback handle_event(event :: event()) :: none()
end