Packages

Complete Stripe SDK for Elixir with parity to the official Ruby SDK. V1+V2 coverage (193 services, 320 resource structs, 525 documented params). Per-event modules, Finch HTTP/2, RustyJSON, automatic retries, OAuth, webhooks, telemetry, per-client config, streaming pagination.

Current section

Files

Jump to
tiger_stripe lib stripe resources deleted_webhook_endpoint.ex
Raw

lib/stripe/resources/deleted_webhook_endpoint.ex

# File generated from our OpenAPI spec
defmodule Stripe.Resources.DeletedWebhookEndpoint do
@moduledoc """
NotificationWebhookEndpointDeleted
"""
@typedoc """
* `deleted` - Always true for a deleted object Possible values: `true`.
* `id` - Unique identifier for the object. Max length: 5000.
* `object` - String representing the object's type. Objects of the same type share the same value. Possible values: `webhook_endpoint`.
"""
@type t :: %__MODULE__{}
defstruct [:deleted, :id, :object]
@object_name "deleted_webhook_endpoint"
def object_name, do: @object_name
end