lib/ory/model/project_host.ex

# NOTE: This file is auto generated by OpenAPI Generator 6.2.1 (https://openapi-generator.tech).
# Do not edit this file manually.

defmodule Ory.Model.ProjectHost do
  @moduledoc """
  
  """

  @derive [Poison.Encoder]
  defstruct [
    :host,
    :id,
    :project_id
  ]

  @type t :: %__MODULE__{
    :host => String.t,
    :id => String.t,
    :project_id => String.t
  }
end

defimpl Poison.Decoder, for: Ory.Model.ProjectHost do
  def decode(value, _options) do
    value
  end
end