Current section
Files
Jump to
Current section
Files
lib/model/secure_payment_artifact.ex
defmodule Iyzico.SecurePaymentArtifact do
@moduledoc """
"""
@enforce_keys ~w(conversation_id page_body)a
defstruct [
:conversation_id,
:page_body
]
@type t :: %__MODULE__{
conversation_id: binary,
page_body: binary
}
end