Current section

Files

Jump to
polarex lib polarex schemas benefit_custom_create_properties.ex
Raw

lib/polarex/schemas/benefit_custom_create_properties.ex

defmodule Polarex.BenefitCustomCreateProperties do
@moduledoc """
Provides struct and type for a BenefitCustomCreateProperties
"""
@type t :: %__MODULE__{note: String.t() | nil}
defstruct [:note]
@doc false
@spec __fields__(atom) :: keyword
def __fields__(type \\ :t)
def __fields__(:t) do
[note: {:union, [:string, :null]}]
end
end