lib/generated/deleted_subscription_item.ex

defmodule Stripe.DeletedSubscriptionItem do
  use Stripe.Entity
  @moduledoc ""
  (
    defstruct [:deleted, :id, :object]

    @typedoc "The `deleted_subscription_item` type.\n\n  * `deleted` Always true for a deleted object\n  * `id` Unique identifier for the object.\n  * `object` String representing the object's type. Objects of the same type share the same value.\n"
    @type t :: %__MODULE__{deleted: boolean, id: binary, object: binary}
  )
end