View Source ExOpenAI.Components.ProjectListResponse (ex_openai.ex v2.0.0-beta2)

Module for representing the OpenAI schema ProjectListResponse.

Fields

  • :data - required - [ExOpenAI.Components.Project.t()]

  • :first_id - required - String.t()

  • :has_more - required - boolean()

  • :last_id - required - String.t()

  • :object - required - :list
    Allowed values: "list"

Summary

Types

@type t() :: %ExOpenAI.Components.ProjectListResponse{
  data: [ExOpenAI.Components.Project.t()],
  first_id: String.t(),
  has_more: boolean(),
  last_id: String.t(),
  object: :list
}