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

Module for representing the OpenAI schema ProjectServiceAccountApiKey.

Fields

  • :created_at - required - integer()

  • :id - required - String.t()

  • :name - required - String.t()

  • :object - required - :"organization.project.service_account.api_key"
    The object type, which is always organization.project.service_account.api_key
    Allowed values: "organization.project.service_account.api_key"

  • :value - required - String.t()

Summary

Types

@type t() :: %ExOpenAI.Components.ProjectServiceAccountApiKey{
  created_at: integer(),
  id: String.t(),
  name: String.t(),
  object: :"organization.project.service_account.api_key",
  value: String.t()
}