View Source ExOAPI.Stripe.Schemas.NotificationEventRequest (exoapi_stripe v0.1.4)

:id :: :string

ID of the API request that caused the event. If null, the event was automatic (e.g., Stripe's automatic subscription handling). Request logs are available in the dashboard, but currently not in the API.

:idempotency_key :: :string

The idempotency key transmitted during the request, if any. Note: This property is populated only for events on or after May 23, 2017.

Link to this section Summary

Link to this section Types

@type params() :: map()
@type t() :: %ExOAPI.Stripe.Schemas.NotificationEventRequest{
  id: String.t() | nil,
  idempotency_key: String.t() | nil
}

Link to this section Functions

Link to this function

changeset(struct \\ %__MODULE__{}, params)

View Source
@spec changeset(t(), params()) :: Ecto.Changeset.t()