Packages

OpenAPI API client for Ory Keto, Ory's open source 'Zanzibar - Google's Consistent, Global Authorization System' implementation.

Current section

Files

Jump to
ory_keto lib ory model version.ex
Raw

lib/ory/model/version.ex

# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
# https://openapi-generator.tech
# Do not edit the class manually.
defmodule Ory.Model.Version do
@moduledoc """
"""
@derive [Poison.Encoder]
defstruct [
:version
]
@type t :: %__MODULE__{
:version => String.t | nil
}
end
defimpl Poison.Decoder, for: Ory.Model.Version do
def decode(value, _options) do
value
end
end