lib/mvola/types/transaction_status.ex

defmodule MVola.Types.TransactionStatus do
  @type t() :: %__MODULE__{
          status: String.t(),
          server_correlation_id: String.t(),
          notification_method: String.t(),
          object_reference: String.t()
        }
  defstruct ~w[
    status
    server_correlation_id
    notification_method
    object_reference
  ]a
end