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