Current section
Files
Jump to
Current section
Files
lib/polarex/schemas/customer_email_update_verify_request.ex
defmodule Polarex.CustomerEmailUpdateVerifyRequest do
@moduledoc """
Provides struct and type for a CustomerEmailUpdateVerifyRequest
"""
@type t :: %__MODULE__{token: String.t()}
defstruct [:token]
@doc false
@spec __fields__(atom) :: keyword
def __fields__(type \\ :t)
def __fields__(:t) do
[token: :string]
end
end