View Source ExOpenAI.Components.Project (ex_openai.ex v1.8.0)

Schema representing a Project within the OpenAI API

Summary

Types

@type t() :: %ExOpenAI.Components.Project{
  archived_at: integer() | nil,
  created_at: integer(),
  id: String.t(),
  name: String.t(),
  object: :"organization.project",
  status: :archived | :active
}