OptionalafterThis hook is triggered after setupOnce() and setup() have been called for all integrations.
You can use it if it is important that all other integrations have been run before.
OptionalpreprocessOptionalprocessOptionalsetupSet up an integration for the given client. Receives the client as argument.
Whenever possible, prefer this over setupOnce, as that is only run for the first client,
whereas setup runs for each client. Only truly global things (e.g. registering global handlers)
should be done in setupOnce.
OptionalsetupThis hook is only called once, even if multiple clients are created. It does not receives any arguments, and should only use for e.g. global monkey patching and similar things.
The name of the integration.