ExStreamClient.Operations.PushProviders (ExStreamClient v0.1.3)
View SourceModules for interacting with the push_providers
group of Stream APIs
API Reference: https://getstream.github.io/protocol/?urls.primaryName=Chat%20v2
Summary
Functions
Delete a push provider from v2 with multi bundle/package support. v1 isn't supported in this endpoint
List details of all push providers.
Upsert a push provider for v2 with multi bundle/package support
Functions
@spec delete_push_provider(String.t(), String.t(), [{:client, module()}]) :: {:ok, ExStreamClient.Model.Response.t()} | {:error, any()}
Delete a push provider from v2 with multi bundle/package support. v1 isn't supported in this endpoint
Required Arguments:
type
name
Optional Arguments:
client
: HTTP client to use. Must implementExStreamClient.Http.Behavior
(e.g.,ExStreamClient.Http
)
@spec list_push_providers([{:client, module()}]) :: {:ok, ExStreamClient.Model.ListPushProvidersResponse.t()} | {:error, any()}
List details of all push providers.
Optional Arguments:
client
: HTTP client to use. Must implementExStreamClient.Http.Behavior
(e.g.,ExStreamClient.Http
)
@spec upsert_push_provider(ExStreamClient.Model.UpsertPushProviderRequest.t(), [ {:client, module()} ]) :: {:ok, ExStreamClient.Model.UpsertPushProviderResponse.t()} | {:error, any()}
Upsert a push provider for v2 with multi bundle/package support
Required Arguments:
Optional Arguments:
client
: HTTP client to use. Must implementExStreamClient.Http.Behavior
(e.g.,ExStreamClient.Http
)