Current section
Files
Jump to
Current section
Files
lib/merchant/model/merchant_order_data.ex
defmodule Merchant.MerchantOrderData do
@moduledoc """
Provides struct and type for a MerchantOrderData
"""
use TypedStruct
typedstruct do
field(:reference, String.t() | nil)
field(:url, String.t() | nil)
end
end