Current section

Files

Jump to
oapi_open_ai lib schemas audit_log project updated changes_requested.ex
Raw

lib/schemas/audit_log/project/updated/changes_requested.ex

defmodule OpenAi.AuditLog.Project.Updated.ChangesRequested do
@moduledoc """
Provides struct and type for a AuditLog.Project.Updated.ChangesRequested
"""
@type t :: %__MODULE__{title: String.t() | nil}
defstruct [:title]
@doc false
@spec __fields__(atom) :: keyword
def __fields__(type \\ :t)
def __fields__(:t) do
[title: {:string, :generic}]
end
end