Current section

Files

Jump to
mollie_api lib mollie_api model entity_method_issuers_inner_image.ex
Raw

lib/mollie_api/model/entity_method_issuers_inner_image.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.EntityMethodIssuersInnerImage do
@moduledoc """
URLs of images representing the issuer. required: - size1x - size2x - svg
"""
@derive JSON.Encoder
defstruct [
:size1x,
:size2x,
:svg
]
@type t :: %__MODULE__{
:size1x => String.t | nil,
:size2x => String.t | nil,
:svg => String.t | nil
}
def decode(value) do
value
end
end