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

Module for representing the OpenAI schema ContainerFileListResource.

Fields

  • :data - required - [ExOpenAI.Components.ContainerFileResource.t()]
    A list of container files.

  • :first_id - required - String.t()
    The ID of the first file in the list.

  • :has_more - required - boolean()
    Whether there are more files available.

  • :last_id - required - String.t()
    The ID of the last file in the list.

  • :object - required - :list
    The type of object returned, must be 'list'.
    Allowed values: "list"

Summary

Types

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