# 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__{ deleted: boolean(), id: String.t(), object: String.t() } defstruct [:deleted, :id, :object] @object_name "deleted_webhook_endpoint" def object_name, do: @object_name end