# 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.CreateProjectInvite do @moduledoc """ Create Project Invite Request Body """ @derive [Poison.Encoder] defstruct [ :invitee_email ] @type t :: %__MODULE__{ :invitee_email => String.t | nil } end defimpl Poison.Decoder, for: Ory.Model.CreateProjectInvite do def decode(value, _options) do value end end