Current section

Files

Jump to
mollie_api lib mollie_api model profile_status_response.ex
Raw

lib/mollie_api/model/profile_status_response.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.ProfileStatusResponse do
@moduledoc """
The profile status determines whether the profile is able to receive live payments. * `unverified`: The profile has not been verified yet and can only be used to create test payments. * `verified`: The profile has been verified and can be used to create live payments and test payments. * `blocked`: The profile is blocked and can no longer be used or changed.
"""
@derive JSON.Encoder
defstruct [
]
@type t :: %__MODULE__{
}
def decode(value) do
value
end
end