Current section

Files

Jump to
mollie_api lib mollie_api model submit_onboarding_data_request_profile.ex
Raw

lib/mollie_api/model/submit_onboarding_data_request_profile.ex

# NOTE: This file is auto generated by OpenAPI Generator 7.17.0 (https://openapi-generator.tech).
# Do not edit this file manually.
defmodule MollieAPI.Model.SubmitOnboardingDataRequestProfile do
@moduledoc """
"""
@derive JSON.Encoder
defstruct [
:name,
:url,
:email,
:phone,
:description,
:businessCategory
]
@type t :: %__MODULE__{
:name => String.t | nil,
:url => String.t | nil,
:email => String.t | nil,
:phone => String.t | nil,
:description => String.t | nil,
:businessCategory => String.t | nil
}
def decode(value) do
value
end
end