Current section

Files

Jump to
polarex lib polarex schemas benefit_license_key_activation_create_properties.ex
Raw

lib/polarex/schemas/benefit_license_key_activation_create_properties.ex

defmodule Polarex.BenefitLicenseKeyActivationCreateProperties do
@moduledoc """
Provides struct and type for a BenefitLicenseKeyActivationCreateProperties
"""
@type t :: %__MODULE__{enable_customer_admin: boolean, limit: integer}
defstruct [:enable_customer_admin, :limit]
@doc false
@spec __fields__(atom) :: keyword
def __fields__(type \\ :t)
def __fields__(:t) do
[enable_customer_admin: :boolean, limit: :integer]
end
end