Current section
Files
Jump to
Current section
Files
lib/merchant/model/webhook_dispute_event.ex
defmodule Merchant.WebhookDisputeEvent do
@moduledoc """
Provides struct and type for a WebhookDisputeEvent
"""
use TypedStruct
typedstruct do
field(:event, String.t())
field(:dispute_id, String.t())
end
end