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

Module for representing the OpenAI schema ContainerListResource.

Fields

  • :data - required - [ExOpenAI.Components.ContainerResource.t()]
    A list of containers.

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

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

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

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

Summary

Types

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